2017-01-30 10 views
2

私は2つのグループts_adminとts_usersを持っています。ログインページから、ログイン後の管理者は管理ビューに直接移動し、ユーザーはユーザービューに移動する必要があります。私はそれについてどうやって行くのか分からない、助けが必要だ。セキュリティ上の制約を含むXMLページをロードしている可能性があります。セキュリティ制約を使用してユーザーを特定のページにリダイレクトする方法

<welcome-file-list> 
    <welcome-file>index.html</welcome-file> 
</welcome-file-list> 

<security-constraint> 
    <display-name>timesheet user permission</display-name> 
    <web-resource-collection> 
     <web-resource-name>timesheet_user_resources</web-resource-name> 
     <url-pattern>/index.html</url-pattern> 
     <url-pattern>/</url-pattern> 
     <url-pattern>/rs/*</url-pattern> 
     <http-method>GET</http-method> 
     <http-method>POST</http-method> 
     <http-method>PUT</http-method> 
     <http-method>DELETE</http-method> 
     <http-method>OPTIONS</http-method> 
    </web-resource-collection> 
    <auth-constraint> 
     <role-name>ts_users</role-name> 
    </auth-constraint> 
    <user-data-constraint> 
     <transport-guarantee>CONFIDENTIAL</transport-guarantee> 
    </user-data-constraint> 
</security-constraint> 

<security-role> 
    <role-name>ts_users</role-name> 
</security-role> 
<security-role> 
    <role-name>ts_admins</role-name> 
</security-role> 

<security-constraint> 
    <display-name>timesheet admin permissions</display-name> 
    <web-resource-collection> 
     <web-resource-name>timesheet_admin_resources</web-resource-name> 
     <url-pattern>/rs/*</url-pattern> 

     <url-pattern>/indexAdmin.html</url-pattern> 
     <http-method>GET</http-method> 
     <http-method>POST</http-method> 
     <http-method>PUT</http-method> 
     <http-method>DELETE</http-method> 
     <http-method>OPTIONS</http-method> 
    </web-resource-collection> 
    <auth-constraint> 
     <role-name>ts_admins</role-name> 
    </auth-constraint> 
    <user-data-constraint> 
     <transport-guarantee>CONFIDENTIAL</transport-guarantee> 
    </user-data-constraint> 
</security-constraint> 

<login-config> 
    <auth-method>FORM</auth-method> 
    <realm-name>MyRealm</realm-name> 

    <form-login-config id="FormLoginConfig_1"> 
     <form-login-page>/login.html</form-login-page> 
     <form-error-page>/error.html</form-error-page> 
    </form-login-config> 
</login-config> 

答えて

0

ロードされたXMLファイルがうまく設定され、それが任意の変更を必要としません。私は簡単な交換のためにindexとindexAdminページの両方にリンクを作成しました。また、ng-showを使用してシステムが管理者として認証するときにのみリンクを表示しました。 JSページに、$scope.isAdmin = data.data.admin;

関連する問題