http://localhost:8080/users

来源:5-18 -Thymeleaf实战-前台编码-02

慕斯卡5217137

2019-07-27

build.gradle文件用老卫的没有用啊,所以就自己改了改:

buildscript {

	repositories {
		maven {
			url 'http://maven.aliyun.com/nexus/content/groups/public/'
		}
	}
	dependencies {
		classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE'
	}
}

plugins {
	id 'java'
}

apply plugin: 'org.springframework.boot'

group = 'com.isea'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
	maven {
		url 'http://maven.aliyun.com/nexus/content/groups/public/'
	}
}

dependencies {
	compile 'org.springframework.boot:spring-boot-starter-web'
	compile'org.springframework.boot:spring-boot-starter-thymeleaf'
	// https://mvnrepository.com/artifact/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect
	compile group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '2.2.0'

	// https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4
	compile group: 'org.thymeleaf', name: 'thymeleaf-spring4', version: '3.0.3.RELEASE'

	testCompile 'org.springframework.boot:spring-boot-starter-test'
}

然后加载之后如下:
图片描述

我长了四个眼睛,都没有看出来,这哪里是版本问题。

写回答

1回答

老卫

2019-07-28

// buildscript 代码块中脚本优先执行

buildscript {


// ext 用于定义动态属性

ext {

springBootVersion = '1.5.2.RELEASE'

}


// 自定义 Thymeleaf 和 Thymeleaf Layout Dialect 的版本

ext['thymeleaf.version'] = '3.0.3.RELEASE'

ext['thymeleaf-layout-dialect.version'] = '2.2.0'


// 使用了 Maven 的中央仓库(你也可以指定其他仓库)

repositories {

//mavenCentral()

maven {

url 'http://maven.aliyun.com/nexus/content/groups/public/'

}

}

// 依赖关系

dependencies {

// classpath 声明说明了在执行其余的脚本时,ClassLoader 可以使用这些依赖项

classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")

}

}


// 使用插件

apply plugin: 'java'

apply plugin: 'eclipse'

apply plugin: 'org.springframework.boot'


// 指定了生成的打包的版本号

version = '1.0.0'


// 指定编译 .java 文件的 JDK 版本

sourceCompatibility = 1.8


// 默认使用了 Maven 的中央仓库。这里改用自定义的镜像库

repositories {

//mavenCentral()

maven {

url 'http://maven.aliyun.com/nexus/content/groups/public/'

}

}


// 依赖关系

dependencies {

// 该依赖对于编译发行是必须的

compile('org.springframework.boot:spring-boot-starter-web')


// 添加 Thymeleaf 的依赖

compile('org.springframework.boot:spring-boot-starter-thymeleaf')


// 该依赖对于编译测试是必须的,默认包含编译产品依赖和编译时依

testCompile('org.springframework.boot:spring-boot-starter-test')

}



0
0

基于Spring Boot技术栈博客系统企业级前后端实战

毕设 Elasticsearch搜索+Thymeleaf模板+JPA+Security+BootStrap

1296 学习 · 738 问题

查看课程