Sitebricks HTML 文件
Sitebricks 中的 HTML 文件需要与模型具有相同的名称,并且它们应该存在于 WEB-INF 中或与模型位于同一目录中。只是想知道是否有一种方法可以更好地组织 HTML 文件。例如将它们保存在单独的文件夹中?目前,如果我这样做,我会收到一条错误消息,指出找不到 *.html。
HTML files in Sitebricks need to have same name as Models and they should exist in WEB-INF or in the same directory as models. Just wondering is there a way to better organise HTML files. For example keeping them in separate folders? Currently if I do that I get an error saying *.html not found.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
@Show
注释来指示与页面类一起使用的模板文件的位置。You can use the
@Show
annotation to indicate the location of the template file that goes with a page class.SessionManagement 依赖于 Guice。
可以使用@SessionScoped注解或者配置方式
bind(Interface.class).to(Implementation.class).in(SessionScope.class)
SessionManagement relied on Guice.
You can use the @SessionScoped annotation or the configuration way
bind(Interface.class).to(Implementation.class).in(SessionScope.class)