gpt4 book ai didi

spring-mvc - thymeleaf 代码完成无法正常工作 intellij 14

转载 作者:行者123 更新时间:2023-12-03 13:06:37 26 4
gpt4 key购买 nike

我正在尝试将 thymeleaf 模板引擎与带有 Intellij 14 的 Spring MVC 一起使用,但代码完成不起作用。请帮帮我。

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<title>Spring Core Online Tutorial</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

<link href="http://cdn.jsdelivr.net/webjars/bootstrap/3.3.4/css/bootstrap.min.css"
th:href="@{/webjars/bootstrap/3.3.5/css/bootstrap.min.css}"
rel="stylesheet" media="screen"/>

<script src="http://cdn.jsdelivr.net/webjars/jquery/2.1.4/jquery.min.js"
th:src="@{/webjars/jquery/2.1.4/jquery.min.js}"></script>

<link href="../static/css/spring-core.css"
th:href="@{css/spring-core.css}" rel="stylesheet" media="screen"/>
</head>

<body>
<div class="container">
<h1>Hello World</h1>
<h2>This is my Thymeleaf index page. This is my changed.</h2>
</div>
</body>
</html>

最佳答案

intellj idea 14 完全支持 thymleaf。这里缺少的部分是命名空间的使用

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">

在您的模板中使用它,您将获得 intellij 完成。希望这能回答你的问题。谢谢

关于spring-mvc - thymeleaf 代码完成无法正常工作 intellij 14,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38034133/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com