Spring 安全性和 Thymeleaf 不起作用

Posted

技术标签:

【中文标题】Spring 安全性和 Thymeleaf 不起作用【英文标题】:Spring security and Thymeleaf doesn't work 【发布时间】:2014-06-14 10:15:47 【问题描述】:

我正在使用 Spring 4 和 Thymeleaf 在我的 index.xhtml 页面中,我写道:

  <!DOCTYPE html>
  <html xmlns="http://www.w3.org/1999/xhtml"
        xmlns:th="http://www.thymeleaf.org"
        xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
        xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
        layout:decorator="layouts/layout">

  <head>
      <title>Welcome</title>
  </head>
  <body>
....
  <div sec:authorize="hasRole('ROLE_ADMIN')">
      You are authorized user! Hi, <span sec:authentication="name">Username</span>
  </div>
  <div sec:authorize="isAnonymous()">
       You are NOT authorized user!
  </div>
...
</body></html>

结果我看到了:

您是授权用户!您好,用户名您不是授权用户!

即Spring Security 不起作用

我的 build.gradle(一些依赖项)是:

compile 'org.thymeleaf:thymeleaf-spring4:2.1.2.RELEASE'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity3:2.1.1.RELEASE'
compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:1.2.3'
compile 'org.springframework.security:spring-security-core:3.2.0.RELEASE'
compile 'org.springframework.security:spring-security-web:3.2.0.RELEASE'
compile 'org.springframework.security:spring-security-config:3.2.0.RELEASE'
compile 'org.springframework.security:spring-security-taglibs:3.2.0.RELEASE'

我的 spring-security.xml 是:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
             xmlns:beans="http://www.springframework.org/schema/beans"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xmlns:context="http://www.springframework.org/schema/context"
             xsi:schemaLocation="http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- Настройка хранилища безопасности -->
    <authentication-manager>
        <authentication-provider>
            <password-encoder ref="bCryptPasswordEncoder">
            </password-encoder>
            <jdbc-user-service id="jdbcUserService" data-source-ref="dataSource"
                               users-by-username-query="select login, password, is_enabled from users where login = ?"
                               authorities-by-username-query="select u.login, p.`name` 
                    from user_group_ref ug, permission_group_ref pg, users u, groups g, permissions p
                    where ug.user_id=u.id and ug.group_id=g.id and pg.group_id=g.id and pg.permission_id = p.id and u.login = ?"
                               group-authorities-by-username-query="select g.id, g.`name`, p.`name` 
                    from user_group_ref ug, permission_group_ref pg, users u, groups g, permissions p
                    where ug.user_id=u.id and ug.group_id=g.id and pg.group_id=g.id and pg.permission_id = p.id and u.login = ?"
                    />
        </authentication-provider>
    </authentication-manager>

    <http use-expressions="true">
        <!-- URLs на которых сработает интерцептор безопасности (permitAll - разрешить вход всем (в т.ч. анонимным)-->
        <intercept-url pattern="/*" access='permitAll'/>

        <!-- Настройка входа пользователя -->
        <form-login login-page="/account/signin" authentication-failure-url="/account/login/fail"
                    username-parameter="login"
                    password-parameter="password"/>

        <!-- Настройка выхода пользователя -->
        <logout logout-url="/account/logout" />

        <!-- Включает поддержку функции "Запомнить меня" -->
        <remember-me remember-me-parameter="remember_me" user-service-ref="jdbcUserService"/>
    </http>

    <!-- Если указать этот файл в authentication-provider выше, то юзеры будут храниться в этом файле -->
    <!--    <user-service id="userService"> -->
    <!--        <user name="alexssource" authorities="ROLE_USER" password="123" /> -->
    <!--    </user-service> -->

    <!-- Хеширование паролей -->
    <!-- 
        При создании юзера используется так:
        -> PasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
        -> String encodedPassword = passwordEncoder.encode(password);
     -->
    <beans:bean id='bCryptPasswordEncoder' class='org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder'/>
</beans:beans>

之前,我使用了 Apache Tiles,它运行良好。 我不明白为什么 Spring Secury 不能与 Thymeleaf 一起使用。 请帮忙!

【问题讨论】:

百里香是否正常工作?您是否有其他页面没有安全性但工作正常? 是的,我的登录页面(有 thymleaf 标签)工作正常 而且这个 index.xhtml 页面还包含一个可以正常工作的 thymleaf 标签 我看不出有什么明显的问题... 您可能应该将其添加为答案,以便将来的读者无需阅读 cmets 即可看到它 【参考方案1】:

我解决了这个问题。 我只是没有将 SpringSecurityDialect 添加到我的配置中。现在我的配置看起来像

<bean id="templateEngine" class="org.thymeleaf.spring4.SpringTemplateEngine"> 
  <property name="templateResolver" ref="thymeleafResolver" /> 
  <property name="additionalDialects"> 
    <set> 
      <bean class="nz.net.ultraq.thymeleaf.LayoutDialect" /> 
      <bean class="org.thymeleaf.extras.springsecurity3.dialect.SpringSecurityDialect"/> 
    </set> 
  </property> 
</bean> 

并且工作正常!

【讨论】:

【参考方案2】:
    @Bean
public SpringTemplateEngine templateEngine()

    SpringTemplateEngine templateEngine = new SpringTemplateEngine();
    templateEngine.setTemplateResolver(templateResolver());
    templateEngine.setEnableSpringELCompiler(true);

    // add dialect spring security
    templateEngine.addDialect(new SpringSecurityDialect());
    return templateEngine;

【讨论】:

以上是关于Spring 安全性和 Thymeleaf 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Spring 控制器映射到它们的 thymeleaf 视图(intellij14)

Thymeleaf spring 安全方言根本不起作用

Spring Boot 中的 Thymeleaf 缓存和安全性

页面重定向取决于使用 Spring 安全性和 Thymeleaf 的角色 - Spring

Spring Boot thymeleaf 验证不起作用

sec:authorize 不起作用 - Spring Boot 2、Thymeleaf 3、Thymeleaf Spring Security 5 集成包