web-dev-qa-db-ja.com

sec:authorizeおよびsec:authenticationアノテーションが機能しない

次のビューコードを含むSpring + Thymeleafプロジェクトがあります。

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring3-3.dtd">
<html
        xmlns="http://www.w3.org/1999/xhtml"
        xmlns:th="http://www.thymeleaf.org"
        xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">

<head>
    <title>Contacts</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<div id="content">
    <h1>Welcome to the site!</h1>
    <p th:if="${loginError}">Wrong user or password</p>
    <form th:action="@{/j_spring_security_check}" method="post">
        <label for="j_username">Email address</label>:
        <input type="text" id="j_username" name="j_username"/> <br/>
        <label for="j_password">Password</label>:
        <input type="password" id="j_password" name="j_password"/> <br/>
        <input type="submit" value="Log in"/>
    </form>
</div>

<div sec:authorize="isAuthenticated()">
    User: <span sec:authentication="name">miquel</span>
</div>
</body>
</html>

Sec:authorize属性とsec:authentication属性は期待どおりに機能しません。ログインしているユーザーがいない場合でも、divは常に表示され、スパンは常に「miquel」を読み取ります。

コントローラークラスの関連スニペットを追跡します。

@RequestMapping(value = "/welcome.html") 
public String wellcome() { 
    Authentication auth = SecurityContextHolder.getContext().getAuthentication(); 
    System.out.println("username: " + auth.getName()); 

    return "home"; 
}

Printlnステートメントは期待どおりに機能します。ログインしているユーザーがいない場合は「anonymousUser」が出力され、そうでない場合はユーザー名が出力されます。

何が悪いのですか?

20

私のアプリケーションをThymeleaf&Spring Securityデモアプリケーションと密接に比較した後、エラーの原因を発見しました。

明らかに、Thymeleafがsec:authorizeおよびsec:authentication属性を処理するためには、SpringSecurityDialectをテンプレートエンジンBeanの追加の方言として登録する必要があります。

<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
    <property name="templateResolver" ref="templateResolver" />
    <property name="additionalDialects">
        <set>
            <bean class="org.thymeleaf.extras.springsecurity3.dialect.SpringSecurityDialect" />
        </set>
    </property>
</bean>

関連するThymeleafドキュメントページ でその事実について言及されていないため、これは驚くべきことです。これが将来同じ問題に直面する他の人に役立つことを願っています。

23

Spring Bootでは、次の依存関係を追加する必要がありました:

    <dependency>
        <groupId>org.thymeleaf.extras</groupId>
        <artifactId>thymeleaf-extras-springsecurity4</artifactId>
    </dependency>
16
JanTheGun

Java構成バージョンの場合、それは私にとっても春のセキュリティ方言を追加することで機能しました:

 @Bean
public SpringTemplateEngine templateEngine() {
    SpringTemplateEngine templateEngine = new SpringTemplateEngine();
    templateEngine.setTemplateResolver(templateResolver());
    templateEngine.addDialect(new TilesDialect());
    templateEngine.addDialect(new SpringSecurityDialect());
    return templateEngine;
}
6
Mihaita Tinta

また、認証イベントの後にテンプレートキャッシュをクリアして、新しい認証データでテンプレートを再処理することもできます。または、ServletContextTemplateResolver.setNonCacheablePatterns()を使用して、ログインセッションに依存するテンプレートを非キャッシュに設定します(これは私が行ったものです)。

0
Greg