JSF 2中的faces-config.xml有什么用?

在JSF 2对注解的大量支持之后,我想知道我将使用faces-config.xml 。 现在它的重要性是什么?

换句话说,哪些configuration只能通过faces-config.xml来完成,而不能通过注释?

现在我所使用的全部是声明Spring的ELparsing器。

 <?xml version="1.0" encoding="UTF-8"?> <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_0.xsd" version="2.0"> <application> <el-resolver> org.springframework.web.jsf.el.SpringBeanFacesELResolver </el-resolver> </application> </faces-config> 

它仍然被用于许多不能被注释的事情。 例如定制的JSFvalidation消息:

 <application> <message-bundle>com.example.i18n.messages</message-bundle> </application> 

一个全局的i18n包(这样你就不需要在每个视图中声明<f:loadBundle> ):

 <application> <resource-bundle> <base-name>com.example.i18n.Text</base-name> <var>text</var> </resource-bundle> </application> 

显式支持i18n语言环境(这样即使有消息包或资源包,也不会被忽略):

 <application> <locale-config> <default-locale>en</default-locale> <supported-locale>nl</supported-locale> <supported-locale>es</supported-locale> <supported-locale>de</supported-locale> </locale-config> </application> 

自定义视图处理程序 :

 <application> <view-handler>com.example.SomeViewHandler</view-handler> </application> 

阶段侦听器 (仍然没有注释):

 <lifecycle> <phase-listener>com.example.SomePhaseListener</phase-listener> </lifecycle> 

无法注释的托pipebean(下面给出了#{now}当前Date ):

 <managed-bean> <description>Current date and time</description> <managed-bean-name>now</managed-bean-name> <managed-bean-class>java.util.Date</managed-bean-class> <managed-bean-scope>request</managed-bean-scope> </managed-bean> 

自定义工厂,如自定义exception处理程序工厂(它也允许工厂为FacesContextExternalContextLifeCycle等等,以便您可以提供您的自定义实现):

 <factory> <exception-handler-factory>com.example.SomeExceptionHandlerFactory</exception-handler-factory> </factory> 

仅列出常用的名称。 如果在IDE中有faces-config.xml标记自动完成,则可以全部find它们。 由于新的注释和隐式导航,只需要托pipe的bean,validation器,转换器,组件,渲染器和点对点导航案例。

Interesting Posts