0

私はすべてのユーザーにデフォルトのウェルカムファイルを持っていますが、グループごとに各ウェルカムファイルが必要です:

<welcome-file-list>
        <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>
    <security-constraint>
        <display-name>Constraint1</display-name>
        <web-resource-collection>
            <web-resource-name>EspaceAdmin</web-resource-name>
            <description/>
            <url-pattern>/faces/admin/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <description/>
            <role-name>administrateur</role-name>
        </auth-constraint>
    </security-constraint>
    <security-constraint>
        <display-name>Constraint2</display-name>
        <web-resource-collection>
            <web-resource-name>EspaceDrapage</web-resource-name>
            <description/>
            <url-pattern>/faces/drapage/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <description/>
            <role-name>chefdequipedrapage</role-name>
        </auth-constraint>

    </security-constraint>

ここに2つのグループがあり、各グループに新しいウェルカムファイルを設定する方法??

4

1 に答える 1