web-dev-qa-db-ja.com

JSF 2でfaces-config.xmlを使用するのは何ですか?

JSF 2によるアノテーションの大きなサポートの後、私は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>
86
Mahmoud Saleh

注釈を付けることができない多くのことにまだ使用する必要があります。例えば。カスタムJSF検証メッセージ:

<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>

注釈を付けられないマネージドBean(以下は、#{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>

カスタム例外ハンドラーファクトリーなどのカスタムファクトリー( FacesContextExternalContextLifeCycle など、カスタム実装を提供できるようにします):

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

一般的に使用されるもののみに名前を付ける。 IDEにfaces-config.xmlタグのオートコンプリートがある場合、それらをすべて見つけることができます。新しい注釈と暗黙的なナビゲーションのおかげで、マネージドBean、バリデーター、コンバーター、コンポーネント、レンダラー、およびポイントツーポイントナビゲーションケースのみが必要なくなりました。

138
BalusC