最佳答案
在 JSF2大力支持注释之后,我想知道我将使用 faces-config.xml
做什么。现在它的重要性是什么?
换句话说,什么配置只能通过 faces-config.xml
而不能通过注释来完成?
现在我使用它的全部目的是声明 Spring 的 EL 解析器。
<?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>