工具:
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
问题是:
即使将/resources
的端点配置为/rest
,为什么泽西端点的URL也已从jersey-serlvet
更改为/rest
?
如果不使用/rest/*
端点,有什么用?
有什么方法可以摆脱/resources
并使用/rest
进行端点工作吗?