我使用球衣在Tomcat中創建webapp。我沒有創建一個Servlet,我只是使用球衣ServletContainer和一些資源類。使用球衣時從web.xml獲取配置數據ServletContainer
我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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"
version="2.5">
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>
com.sun.jersey.spi.container.servlet.ServletContainer
</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.mycompany.myproduct.rest</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
我的web應用程序需要讀取一些配置值。我認爲一個好的方法是使用上下文參數,像這樣:
<web-app>
...
<context-param>
<description>This is a context parameter example</description>
<param-name>ContextParam</param-name>
<param-value>ContextParam value</param-value>
</context-param>
</web-app>
這是最好的方法嗎?我如何從我的資源類訪問這些上下文參數?
下面是一個例子資源類:
@Path("/api/ping")
public class PingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String helloWorld() {
return "pong";
}
}
這看起來不錯。但我認爲它返回一個初始參數。關於上下文參數呢?我沒有看到如何從ServletContext獲取它。 – tallseth
不完全...檢查http://stackoverflow.com/questions/2069902/dd-elements-context-param-and-init-param-both-use-the-getinitparameter-me –
我試過這個,但我的上下文爲空。 – tallseth