3

私のweb.xml :

    <context-param>
            <param-name>javax.faces.PROJECT_STAGE</param-name>
            <param-value>Development</param-value>
        </context-param>

        <welcome-file-list>
            <welcome-file>/secured/secure.xhtml</welcome-file>
        </welcome-file-list>

        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>

        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.xhtml</url-pattern>
        </servlet-mapping>

        <context-param>
            <param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
            <param-value>true</param-value>
        </context-param> 
    <security-constraint>
        <web-resource-collection>
          <web-resource-name>Restricted</web-resource-name>
          <url-pattern>/secured/*</url-pattern>
          <http-method>GET</http-method>
          <http-method>POST</http-method>
        </web-resource-collection>
        <auth-constraint>
          <role-name>ADMIN</role-name>
        </auth-constraint>
      </security-constraint>
<login-config>
     <auth-method>FORM</auth-method>
     <realm-name>jdbc-realm</realm-name>
     <form-login-config>
       <form-login-page>/public/login.xhtml</form-login-page>
       <form-error-page>/public/error.xhtml</form-error-page>
     </form-login-config>
   </login-config>

Web アプリで、許可されていないユーザーをログイン ページにリダイレクトしたい。面白いことに、これは機能していましたが、愚かな変更を加えたので、アクセスすると、localhost:8080ログインしていなくても常にsecure.xhtmlが表示されます。localhost:8080/secured/secure.xhtmlリダイレクトは正常です。

4

1 に答える 1

7

<welcome-file>完全に正しく使用していません。/これは、要求されたフォルダー (ルート、 または/public/など)に関係なく、フォルダーが要求されたときに提供する必要があるファイルの唯一のファイル名を表す必要があります/secured/

ウェルカム ファイルは、 によって実行される内部転送によって提供されRequestDispatcher#forward()ます。内部転送はセキュリティ制約をトリガーしません。代わりにリダイレクトを送信する必要があります。

<welcome-file>をより健全なデフォルトに変更しますindex.xhtml

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

のように webapp のルートに作成します/index.xhtmlすべてのリクエストを/index.xhtmlにリダイレクトする必要がある場合/secured/secure.xhtml、基本的に 2 つの方法があります。

  1. Filterの URL パターンにaをマッピングし、メソッド内/index.xhtmlで呼び出します。例えばresponse.sendRedirect("secured/secure.xhtml")doFilter()

    @WebFilter("/index.xhtml")
    public class IndexFilter implements Filter {
    
        @Override
        public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
            HttpServletResponse response = (HttpServletResponse) res;
            response.sendRedirect("secured/secure.xhtml"));
        }
    
        // ...
    }
    
  2. aをバッキング Bean メソッドを呼び出す に<f:event type="preRenderView">入れます。例えば/index.xhtmlexternalContext.redirect("secured/secure.xhtml")

    <f:event type="preRenderView" listener="#{indexBean.redirect}" />
    

    @ManagedBean
    @ApplicationScoped
    public class IndexBean {
    
        public void redirect() throws IOException {
            FacesContext.getCurrentInstance().getExternalContext().redirect("secured/secure.xhtml");
        }
    
    }
    
于 2012-04-17T14:37:25.293 に答える