Теги Spring Security не распознаются с помощью Thymeleafs - PullRequest
0 голосов
/ 26 мая 2018

Я использую Spring Boot с Thymeleafes и Spring security.Однако теги безопасности Spring не распознаются в файлах представлений.Они пропускаются, и отображается контент как в аутентифицированных, так и в любых других блоках.Я попытался использовать как простые пружинные теги безопасности, так и теги thymeleafs:

<div sec:authorize="isAuthenticated()">
  authenticated
</div>
<div sec:authorize="isAnonymous()">
  anonymous
</div>
<sec:authorize access="isAuthenticated()">
    authenticated
</sec:authorize>
<sec:authorize access="isAnonymous()">
    anonymous
</sec:authorize>

Вывод:

authenticated 
anonymous 
authenticated 
anonymous

В чем может быть проблема?Нужна ли какая-либо конфигурация?Вот мое содержимое файла POM.Заранее спасибо за помощь

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>
<dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-springsecurity4</artifactId>
    <version>3.0.2.RELEASE</version>
</dependency>   
    </dependencies>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...