Tapestry 3:无法从属性文件获取消息
我在 HelloWorld.html 和 HelloWorld.properties 文件中有 Tapestry 3 模板,其中的字符串位于同一文件夹中,但无法获取它们。
我试过:
我唯一的输出是[PAGETITLE]。
这是属性文件的内容:
pageTitle=Hello world
I have tapestry 3 template in HelloWorld.html and HelloWorld.properties file with strings in the same folder, but cannot get them.
I've tried :
The only output that i have is [PAGETITLE].
Here is the content of properties file:
pageTitle=Hello world
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.properties 文件需要与相应的类位于同一文件夹中:可能位于 src/main/resources 下(当然,它根据项目的布局而变化)。
The .properties file needs to go in the same folder as the corresponding class: probably under src/main/resources (it of course varies with the layout of your project).