我在引用 xhtml 文件中的 .properties 文件中的资源值时遇到问题
我收到以下消息:
Jul 23, 2012 8:33:27 PM com.sun.faces.context.ExternalContextImpl getMimeType
WARNING: JSF1091: No mime type could be found for file hello. To resolve this,
add a mime-type mapping to the applications web.xml.
这是我的 faces-config.xml
<faces-config 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-facesconfig_2_1.xsd"
version="2.1">
<application>
<resource-bundle>
<base-name>resources.resources</base-name>
<var>resource</var>
</resource-bundle>
<locale-config>
<default-locale>en</default-locale>
</locale-config>
</application>
</faces-config>
这是我的测试页面
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<f:view>
<h:head>
<h:outputText value="Header" />
</h:head>
<h:body>
<h:form>
<h:outputText value="#{resource.hello}" />
<h:outputText value="Body" />
<br />
<p:spinner />
</h:form>
</h:body>
</f:view>
</html>
有什么问题?
编辑:
不确定是否重要,我使用 Primefaces-3.3.1
谢谢!