泽西岛2.21.1的休息端点URL

时间:2018-06-25 12:38:42

标签: java rest jersey weblogic12c

工具:

WebLogic 12.2

Jersey 2.21.1

问题:

我已经将应用程序从Weblogic 11g迁移到使用Jersey Web服务的12c。

我已经成功迁移/部署了应用程序。

球衣servlet映射在下面-

  <servlet-mapping>
    <servlet-name>jersey-serlvet</servlet-name>
    <url-pattern>/rest/*</url-pattern>
  </servlet-mapping>

问题在于Jersey servlet的正确端点URL发生了变化-

我需要将端点URL从http://localhost:7105/ws/resources/update更改为http://localhost:7105/ws/rest/update

访问URL时抛出其他404 not found error-http://localhost:7105/tsws/rest/update

问题是:

  1. 即使将/resources的端点配置为/rest,为什么泽西端点的URL也已从jersey-serlvet更改为/rest

  2. 如果不使用/rest/*端点,有什么用?

  3. 有什么方法可以摆脱/resources并使用/rest进行端点工作吗?

0 个答案:

没有答案