使用Restlets时,如何读取通过 web.xml 传入的配置参数?对于 servlet,可以使用context-param 。如何从 Restlet 中读取上下文参数?
问问题
2658 次
2 回答
3
从邮件列表:
初始化参数在应用程序的上下文中可用:getApplication().getContext().getParameters()。
在 web.xml 中:
<context-param>
<param-name>my.context.param</param-name>
<param-value>Hello World</param-value>
</context-param>
在 Restlet 的表示方法中,使用:
// => "Hello World"
String result =
getApplication().getContext().getParameters().getFirstValue("my.context.param");
于 2009-05-01T14:23:38.883 回答
1
ServerServlet
servletConfig
将来自和的所有初始化参数添加servletContext
到应用程序上下文中。
因此,根据您的需要,您可以检查 的源代码ServerServlet
,并以相同的方式读取配置参数,或者只是从您的 restlet 或您的 restlet 的应用程序的上下文中获取值。
于 2009-05-01T04:49:22.693 回答