Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将所有 facelets 和托管 bean 放入一个外部 jar 中,但如果我将 de index.xhtml 放在那里,我不知道如何引用它。
如果jar结构是:
IndexManagedBean.class META-INF/ resources/ pages/ index.xhtml
它的网址是什么?
假设 JAR 放置在 webapp 的/WEB-INF/lib文件夹中,并且您使用的是 JSF 2.x,并且 webapp 的上下文路径是/contextpath,并且FacesServlet映射到 URL 模式,*.xhtml那么您可以通过以下 URL 引用它:
/WEB-INF/lib
/contextpath
FacesServlet
*.xhtml
http://example.com/contextpath/pages/index.xhtml