我有一个使用Jersey开发的REST Api,当涉及到Json in / out时,一切正常。并且我正在使用Ajax。
但是,由于浏览器的跨域限制,我想在我的WAR上打包静态网站(JS / Images / HTMLs / CSS)
这就是我的web.xml的样子:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="RESTApi"
version="3.1">
<display-name>RESTApi</display-name>
<servlet>
<servlet-name>Test -> Jersey RESTful API</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.bc.api</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Test -> Jersey RESTful API</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
和我在项目结构上的静态内容:
现在,当我尝试访问http://localhost:8080/static/index.html
时,它已被处理为REST调用。
如何创建静态目录包并通过API访问?
答案 0 :(得分:0)
您可以使用不同的网址格式进行休息。例如,对于所有休息api url模式从休息开始。http://localhost:8080/rest/ap/customer。
<强>的web.xml:强>
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="RESTApi"
version="3.1">
<display-name>RESTApi</display-name>
<servlet>
<servlet-name>Test -> Jersey RESTful API</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.bc.api</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Test -> Jersey RESTful API</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>
对于静态内容,您可以 WebContent 目录下的静态文件夹,然后您可以访问它: http://localhost:8080/static/index.html 。