web.xml:设置属性文件中的值

发布于 2024-11-09 17:40:35 字数 490 浏览 0 评论 0原文

是否可以通过从属性文件中获取值来在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痕至 2024-11-16 17:40:35

您可以访问系统环境变量。另请参阅这篇文章

You can access system environment variables. Also see this post.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文