使用:Jersey 1.19,TomEE Plus 1.74 我可以通过两个不同的URL访问相同的控制器方法。
http://localhost:8080/hello
http://localhost:8080/rest/hello
的web.xml:
<init-param>
<param-name>
com.sun.jersey.config.property.packages
</param-name>
<paramvalue>
mif.ubermensch.labanorogiraite.presentation.controllers
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>LabanoroGiraite</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
控制器:
@Path("/hello")
public class HelloController {
@GET
@Produces("text/plain")
public String Hello(){
return "Hello, Restful world!";
}
}
根据在stackoverfow
上找到的结果,对TomEE system.properties进行了添加 openejb.api.javax.ws.rs.Path.validation=false
com.sun.jersey.server.impl.cdi.lookupExtensionInBeanManager=true
如果没有这两个,访问带有/ rest /前缀的url会导致异常:
javax.naming.NameNotFoundException: Name [com] is not bound in this Context. Unable to find [com].
如何仅通过/ api / * url-pattern限制访问?
答案 0 :(得分:0)
你没有提到你正在使用哪种tomee,但如果提供jaxrs(-jaxrs或-plus)的发行版需要在conf / conf.d / cxf-rs.properties中添加disabled = true。 / p>