Rest Web Service 部署描述符查询 java



正在实现 Rest Web 服务,需要澄清部署描述符文件。下面是 web.xml 代码,我所理解的是,每当 url 包含/webapi/时,都会调用 ServletContainer 类。如果到目前为止我错了,请纠正我。此外,您能否告诉我参数名称和参数值属性的重要性。是参数值中提到的包作为参数传递给 ServletContainer 类吗?

<?xml version="1.0" encoding="UTF-8"?>
<!-- This web.xml file is not required when using Servlet 3.0 container,
     see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <servlet>
        <servlet-name>Jersey Web Application</servlet-name>
        <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
        <init-param>
            <param-name>jersey.config.server.provider.packages</param-name>
            <param-value>org.xyz.ws.transporter</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Jersey Web Application</servlet-name>
        <url-pattern>/webapi/*</url-pattern>
    </servlet-mapping>
</web-app>

提前感谢您的帮助。

我理解的是,每当网址包含/webapi/时,ServletContainer类就会被调用。

真。

此外,你能告诉我属性参数名称和参数值的意义是什么吗

init-param基本上只是 servlet/filter 可以用来配置自身的配置属性。

在这里,您将配置一个名为 jersey.config.server.provider.packages 的特定属性,其值为 org.xyz.ws.transporter 。 泽西岛将使用此特定配置属性的值来设置包扫描。Jersey 将扫描您指定的包(递归方式(,以查找用 @Provider@Path 注释的类。这允许泽西岛注册所有资源和提供程序类。

相关内容

  • 没有找到相关文章

最新更新