thymeleaf-layout-dialect 수 동 도입

1390 단어 web자바springMVC
최근 연구 에 서 는 자바 로 사 이 트 를 작성 하 는 것 을 연구 하고 있 으 며,spring-boot-starter-thymeleaf 의 thymeleaf-layout-dialect 를 사용 할 때 항상 유효 하지 않 습 니 다.사 이 트 를 찾 아 보 니 2.0 이전의 spring-boot-starter-thymeleaf 자체 테이프 thymeleaf-layout-dialect.2.0 이후로 가지 고 있 지 않 습 니 다.그럼 어떻게 수 동 으로 들 어 와 요?
아마
compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'

닮 은 것 이 아니 라 spring-boot-starter-thymeleaf 처럼 도입
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'

마지막 으로 완전한 build.gradle 을 첨부 합 니 다.
plugins {
    id 'org.springframework.boot' version '2.1.4.RELEASE'
    id 'java'
}

apply plugin: 'io.spring.dependency-management'

group = 'masterSpringMvc'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
    mavenCentral()
}

dependencies {
    compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
    compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
    compile 'org.webjars:materializecss:1.0.0'
    compile 'org.webjars:jquery:2.1.4'
    implementation 'org.springframework.boot:spring-boot-starter-webflux'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testImplementation 'io.projectreactor:reactor-test'
}

좋은 웹페이지 즐겨찾기