gpt4 book ai didi

jsp - SpringBoot应用程序: Accessing Common application properties in a JSP page

转载 作者:行者123 更新时间:2023-12-04 13:47:53 25 4
gpt4 key购买 nike

我试图在JSP页面中访问我的application.properties中设置的属性。这是出于显示目的,它会将用户从我们的管理页面发送到其他应用程序。它根本不需要代码。

application.properties条目:

frontend.url=http://example.com/some_endpoint

在我的JSP文件中
我在下面尝试了这些变体。
<spring:eval  expression="('frontend.url')" />
<spring:eval expression="'frontend.url'" />

这些下面的抛出错误
<spring:eval  expression="@getProperty('frontend.url')" />
<spring:eval expression="@frontend.url" />
<spring:eval expression="@applicationProperties.getProperty('frontend.url')" />

是否有要使用的特定语法,还是应该只公开来自 Controller 的请求属性?
@Value("${frontend.url}")
private String urlForDisplayPurposes;

我知道这里解释的建议方法 enter link description here
可以,但是我真的不想要额外的属性文件。

最佳答案

使用@environment.getProperty()应该可以。例如:

<spring:eval expression="@environment.getProperty('frontend.url')" var="frontendUrl" />
<a href="${frontendUrl}">Click</a>

关于jsp - SpringBoot应用程序: Accessing Common application properties in a JSP page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37316346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com