0

例如,我如何将一些 servlet 映射init-param到类似的东西java.io.tmpdir/test

我已经尝试过${java.io.tmpdir}/test,但没有奏效。

谢谢

4

1 回答 1

0

这不是 Servlet 内置的。您必须在代码中实现这一点。Spring 库为此提供了一个类:http: //docs.spring.io/spring/docs/3.2.x/javadoc-api/org/springframework/web/util/ServletContextPropertyUtils.html

我还看到人们覆盖 ServletContext 来提供这种支持: http: //www.coderanch.com/t/484445/Servlets/java/access-System-Properties-determine-param

于 2013-09-17T20:08:59.910 回答