Thymeleaf:Intellij 上的“找不到要前往的声明”错误
Posted
技术标签:
【中文标题】Thymeleaf:Intellij 上的“找不到要前往的声明”错误【英文标题】:Thymeleaf: "cannot find declaration to go to" error on Intelijj 【发布时间】:2020-12-05 03:44:34 【问题描述】:我正在制作一个使用 Thymeleaf 的项目。
IDE 是 IntelliJ IDEA 社区版 2020.2 x64。
Intellij 无法识别 Thyemeleaf,当我将鼠标悬停在 th:each
“找不到要前往的声明”时收到以下消息。
在该文件中,我添加了以下标签 <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://thymeleaf.org">
。
这是我的 pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.7.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>net.javaguides</groupId>
<artifactId>springboot-thymeleaf-crud-web-app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot-thymeleaf-crud-web-app</name>
<description>Demo project for Spring Boot and thymeleaf</description>
<properties>
<java.version>1.8</java.version>
</properties>
<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-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
谁能告诉我问题出在哪里?
【问题讨论】:
【参考方案1】:仅 IntelliJ IDEA Ultimate 支持 Thymeleaf,社区版不支持。见https://www.jetbrains.com/idea/features/editions_comparison_matrix.html
【讨论】:
以上是关于Thymeleaf:Intellij 上的“找不到要前往的声明”错误的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot + Thymeleaf 找不到消息属性
intellij idea 怎么找不到spring boot