thymeleaf各种问题,标签没用?网页404?

首先html的网页

  

<!DOCTYPE html>
//注意这个xmlns后面一定是https,我的就是没加s导致无法识别msg这种变量
<html lang="en" xmlns:th="https://www.thymeleaf.org">

<head>
    <meta charset="UTF-8">
    <title>Thymeleaf 语法</title>
</head>
<body>

<p th:text="${msg}"></p>
</body>
</html>

  

其次,html文件基本都说是放在templates文件夹下,然后用application.properties写一下解析器(前4行应该都必要写上去)

spring.resources.static-locations=classpath:/templates/spring.thymeleaf.cache=falsespring.thymeleaf.mode=LEGACYHTML5spring.thymeleaf.suffix=.htmlspring.thymeleaf.encoding=UTF-8

最重要的导入的包!!!!我可能这一天就死在导包上了

<properties>
        <java.version>1.8</java.version>
         <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
        <project.build.sorceEncoding>UTF-8</project.build.sorceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

//下面是我觉得必须要用到的包,反正我少一个就起不来,百度上的也没总结,我就自己写了
  <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf-spring5</artifactId>
            <version>3.0.11.RELEASE</version>
        </dependency>
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
<dependency>
            <groupId>net.sourceforge.nekohtml</groupId>
            <artifactId>nekohtml</artifactId>
        </dependency>
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
    <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf</artifactId>
            <version>3.0.9.RELEASE</version>
        </dependency>

  当然web的包是必要的这边也再做下累述吧。嫌自己看包麻烦想复制粘贴配置的请复制下面的

<?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.1.7.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <properties>
        <java.version>1.8</java.version>
         <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
        <project.build.sorceEncoding>UTF-8</project.build.sorceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <groupId>com.joel.shiro</groupId>
    <artifactId>01-demo-shiro</artifactId>
    <version>1.0.0</version>
    <name>01-demo-shiro</name>
    <description>Project for Spring Boot</description>

    <dependencies>
         <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf-spring5</artifactId>
            <version>3.0.11.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.nekohtml</groupId>
            <artifactId>nekohtml</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>javax.servlet.jsp-api</artifactId>
            <version>2.3.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>

        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf</artifactId>
            <version>3.0.9.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.apache.shiro</groupId>
            <artifactId>shiro-spring</artifactId>
            <version>1.4.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/webapp</directory>
                <targetPath>META-INF/resources</targetPath>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
        </resources>
    </build>

</project>

  最后的话,controller层基本应该没什么问题的,后台传个值到前台。这里也不多做累述。

觉得此文章对你有帮助的话帮我点个赞吧= =!

原文地址:https://www.cnblogs.com/JoelKing/p/11420652.html

时间: 2024-11-15 00:38:38

thymeleaf各种问题,标签没用?网页404?的相关文章

html标签及网页语义化理解

最近重新看了一遍html标签的知识,有很多新的体会,对语义化有了一个新的理解. 那么什么叫做语义化呢,说的通俗点就是:明白每个标签的用途(在什么情况下使用此标签合理)比如,网页上的文章的标题就可以用标题标签,网页上的各个栏目的栏目名称也可以使用标题标签.文章中内容的段落就得放在段落标签中,在文章中有想强调的文本,就可以使用 em 标签表示强调等等. 语义化的好处主要有两个方面: 1. 更容易被搜索引擎收录. 2. 更容易让屏幕阅读器读出网页内容.(屏幕阅读器是一种软件,用来将文字.图形以及电脑接

使用thymeleaf整合layui时一直报404

今天使用thymeleaf的碎片功能时一直报404,我一直以为我路径错了,但是仔细检查了好几次还是没用, 然后认为是浏览器缓存的问题,在配置中关闭缓存后同时清除浏览器缓存发现还是不行,纳闷了不会闹鬼了吧 郁闷的不行,然后在吃了包泡面的增益buff下,觉得可能是idea的target然后果断删了,果然成功了,哔了个狗: <!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"

&lt;body&gt;标签,网页上显示的内容放在这里

在网页上要展示出来的页面内容一定要放在body标签中.如下图是一个新闻文章的网页. 在浏览器中的显示效果: 示例: <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>了不起的盖茨比</title> </head> <bo

thymeleaf 和其它标签组合 获取数据

thymeleaf 有很多的内置标签, 但是我们在开发中会引入其它很多标签, 这个时候, 后台数据过来了,前端 页面要怎么显示呢? 网上资料真的很少. 不过还是找到了答案:  th:attr 这个标签 可以定义其它标签 比如我用了 jQuery的 一个小插件标签  data-tipso="${adver.errorTip}" ,thymeleaf  是没有这个标签的, 所有值获取不到 这个时候只有 包装一下  th:attr="data-tipso=${adver.error

Html标签及网页布局

1.分享主要内容 认识html中的常用标签,了解行内元素.块级元素的分类和区别:然后通过一个基本的网页了解前端页面的大致布局以及不同标签(行内元素.块级元素)的使用情况: 2.html中常用标签 (1) 段落标记<p> <p>-</p>定义了一个段的块级标记 <p id=f1>my first paragraph.</p> <p id=f2>my second paragraph.</p> (2) 图像标记<img&

用meta标签让网页用360打开时默认为极速模式

最近做项目,用360浏览器访问自己的本地网页,发现都是默认在兼容模式下打开,做的淡入淡出轮播效果在兼容模式下看时,感觉切换很生硬.百度,发现360官网帮助里有说明用meta标签控制浏览器内核,网址为http://se.360.cn/v6/help/meta.html. 实现方式很简单,就是在head标签中加上一个meta标签: <html> <head> <meta name="renderer" content="webkit|ie-comp|

(转载)H标签对于网页的优化

对于H标签合理使用能对优化有很好的作用,那么H1,H2标签到底有多重要,怎么用,在什么地方使用,下面我围绕h1h2标签展开,说下我对H标签优化中标签的看法. 我们首先要明白h1,h2是什么.在HTML语言中有h1到h6定义标题头的六个不同文字大小的TAGES.本质是为了呈现内容结构,共有六种标签,文 字从大到小,权重依此反而降低.也就是说H1>H2>H3,依此类推.他在优化中也是起着,呈现内容结构的一个作用,这样分配的好处把网页整 个结构由主到次区分开来,搜索引擎抓取网页的时候就会按着这样的顺

Thymeleaf 常用th标签基础整理

(一)Thymeleaf 是个什么? 简单说, Thymeleaf 是一个跟 Velocity.FreeMarker 类似的模板引擎,它可以完全替代 JSP .相较与其他的模板引擎,它有如下三个极吸引人的特点: 1.Thymeleaf 在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,也可以让程序员在服务器查看带数据的动态页面效果.这是由于它支持 html 原型,然后在 html 标签里增加额外的属性来达到模板+数据的展示方式.浏览器解释 html 时会忽略未定义的标签

关于Thymeleaf的常用标签以及ideaTools下找不到Test RESTful web service的解决办法

首先需要在html里加上如下代码开启thymeleaf标签库 <html lang="en" xmlns:th="http://www.thymeleaf.org"> lang="en"是html5需要的 常用表达式: ${...} 变量表达式 *{...} 选择表达式 #{...} 消息文字表达式 @{...} 链接url表达式 #maps 工具对象表达式 常用标签: th:action 定义后台控制器路径 th:each 循环语句