gpt4 book ai didi

jsf - 警告 : JSF1091: No mime type detected for shared/variables. 少文件

转载 作者:行者123 更新时间:2023-12-04 16:02:37 26 4
gpt4 key购买 nike

我正在使用 MaterialAdmin JSF/PrimeFaces Web 应用程序的主题。

每次启动应用程序时,我都会收到针对每个 .less 文件的警告:

WARNING: JSF1091: No mime type detected for shared / variables.less file. To resolve this issue, add a mime-type mapping to the web.xml file of the application.

我试过了,但没机会:

<web:mime-mapping>
<extension>less</extension>
<web:mime-type>text/plain</web:mime-type>
</web:mime-mapping>

最佳答案

提供了一个 web.xml,其根声明符合标准 Servlet 3.1 规范,如下所示(注意:没有 xmlns:web XML 命名空间!),

<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1"
>
<!-- Config here. -->
</web-app>

那么您应该添加以下条目,以便将 less 扩展与 text/css mime 类型相关联(注意:没有 text/plain!):

<mime-mapping>
<extension>less</extension>
<mime-type>text/css</mime-type>
</mime-mapping>

不要忘记重建/重新部署/重启。 web.xml 仅在应用程序启动时解析一次。

关于jsf - 警告 : JSF1091: No mime type detected for shared/variables. 少文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32728818/

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