gpt4 book ai didi

java - 如何让 web-fragment.xml 工作

转载 作者:行者123 更新时间:2023-12-02 14:43:39 25 4
gpt4 key购买 nike

我在 META-INF/下的 jar 文件中有以下 web-fragment.xml

我似乎无法让它工作(尽管我认为它在之前的测试中确实如此)。

相同的内容适用于 web.xml。

网络应用程序本身就是耳朵的一部分,但我认为这并不重要。

我尝试使用 标签和 。顺便说一句,引用文档在哪里?

这个想法是将我的 jar 包含在我所有的耳朵 war (10+)中,以便在一个地方实现常见的事情(身份验证,...)。问题是关于 web-fragment,一旦我可以迁移到它,我就会让事情正常工作(web.xml 中就是这种情况)。

标签本身之前是 2.5,将其更改为 3.0(并清理了项目以确保)。

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.FACELETS_RESOURCE_RESOLVER</param-name>
<param-value>be.epc.common.web.util.EpcResourceResolver</param-value>
</context-param>
<error-page>
<error-code>403</error-code>
<location>/epcResources/noaccess.jsf</location>
</error-page>
<error-page>
<exception-type>javax.ejb.AccessLocalException</exception-type>
<location>/epcResources/noaccess.jsf</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/epcResources/notfound.jsf</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/epcResources/error.jsf</location>
</error-page>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
<url-pattern>/icefaces/*</url-pattern>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<security-constraint>
<web-resource-collection>
<web-resource-name>Toutes pages</web-resource-name>
<description/>
<url-pattern>*.xhtml</url-pattern>
<url-pattern>*.jsf</url-pattern>
</web-resource-collection>
<auth-constraint>
<description/>
<role-name>APP_EPC</role-name>
</auth-constraint>
<user-data-constraint>
<description>HTTPS</description>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>FORM</auth-method>
<realm-name>epcRealm</realm-name>
<form-login-config>
<form-login-page>/unauthenticated-redirect.jsp</form-login-page>
<form-error-page>/unauthenticated-redirect.jsp</form-error-page>
</form-login-config>
</login-config>
<security-role>
<description/>
<role-name>APP_EPC</role-name>
</security-role>
</web-app>

最佳答案

尝试将“web-app”标签替换为“web-fragment”

关于java - 如何让 web-fragment.xml 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5389857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com