我正在使用jsf 2.0項目。我想從jar文件訪問xhtml文件。在jar文件中,我把三個文件first.html,second.xhtml,h1.jpg。我可以從jar使用以下url訪問jpg和html文件。如何從jar文件中訪問xhtml文件
<h:graphicImage url="#{resource['h1.jpg']}"/>
<h:outputLink value="#{resource['first.html']}">
<h:outputText value="OutputLink"/>
</h:outputLink>}
但我不能從jar使用以下URL訪問xhtml。
<h:outputLink value="#{resource['second.xhtml']}">
<h:outputText value="OutputLink"/>
</h:outputLink>
<h:outputLink value="#{resource['second.jsf']}">
<h:outputText value="OutputLink"/>
</h:outputLink>}
它給源找不到錯誤。
我的罐子結構的jar:META-INF /資源
感謝您的回覆。但我已經嘗試過了。它不工作。如果你有任何其他的想法請。 – KSHiTiJ