web.xml:设置属性文件中的值
是否可以通过从属性文件中获取值来在 Tomcat 的 web.xml 中设置值?
例如,我希望将用户角色设置外部化在属性文件中,是否可以执行以下操作:
我的属性文件:
#properties file
my.user.role=role1
我的 web.xml:
<security-role>
<role-name>${my.user.role}</role-name>
</security-role>
编辑:
我发现这篇文章,所以我猜角色需要在 web.xml 中设置为静态。 xml.
Is it possible to set values in Tomcat's web.xml by fetching values from properties file?
e.g. I would like to have user roles settings externalized in properties file, is it possible then to do something like this:
my properties file:
#properties file
my.user.role=role1
my web.xml:
<security-role>
<role-name>${my.user.role}</role-name>
</security-role>
Edit:
I've found this post, so I guess roles need to be set static in web.xml.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以访问系统环境变量。另请参阅这篇文章。
You can access system environment variables. Also see this post.