java-在Struts 2中将getText()用于geting属性
作者:互联网
我正在使用JSP开发Struts2框架.
在我的samplePrj.properties文件中
com.samplePrj.Successmessage = Saved Successful
是一个属性.我需要在我的JSP页面中使用Struts2使用此值.
因此,如何在我的JSP页面中获取“ com.samplePrj.Successmessage”的值.
解决方法:
使用text
标签
<s:i18n name="samplePrj">
<s:text name="com.samplePrj.Successmessage" />
</s:i18n>
它将使用samplePrj.properties中的i18n
标签加载捆绑包,并从其中的键com.samplePrj.Successmessage中打印值.
或者您可以将其与getText()一起使用,但是您的操作类应该扩展ActionSupport.
<s:property value="getText('com.samplePrj.Successmessage')"/>
标签:struts2,resourcebundle,javascript,java,jsp 来源: https://codeday.me/bug/20191029/1961695.html