소개
게시글
질문&답변
2021.07.12
윈도우에서 gradle로 빌드하시려는 분께 공유드립니다.
맨 위에 공유 해주신거 보고 참고해서 정리한 build.gradle 파일 소스 입니다. repositories 에 gradlePluginPortal() 이걸 추가해줘야 합니다. plugins { id 'org.springframework.boot' version '2.5.2' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' id "com.github.node-gradle.node" version "3.1.0"}group = 'me.bingbingpa'version = '0.0.1-SNAPSHOT'sourceCompatibility = '11'configurations { compileOnly { extendsFrom annotationProcessor }}repositories { mavenCentral() gradlePluginPortal()}dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-mail' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'com.h2database:h2' runtimeOnly 'org.postgresql:postgresql' annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' annotationProcessor 'org.projectlombok:lombok' // npm implementation 'com.github.node-gradle:gradle-node-plugin:3.1.0' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test'}test { useJUnitPlatform()}node { version = '16.3.0' download = true nodeModulesDir = file("${projectDir}/src/main/resources/static")}task copyFrontLib(type: Copy) { from "${projectDir}/src/main/resources/static" into "${projectDir}/build/resources/main/static/."}copyFrontLib.dependsOn npmInstallcompileJava.dependsOn copyFrontLib
- 6
- 2
- 1.1K
고민있어요
2021.07.07 12:26
6.로그인 처리1- 쿠키, 세션.pdf 오타 제보
- 0
- 1
- 180
질문&답변
2021.07.03
postgres 관련 공간 쿼리 가능 여부 질문입니다.
답변 감사합니다!!!
- 0
- 2
- 1K
고민있어요
2021.06.22 22:04
chart.js 3.x 버전 사용시 오류
- 1
- 0
- 205
질문&답변
2019.12.28
<참고> hateoas가 1.0.2 가 되면서 바뀐부분이 있네요..
안녕하세요. 방금 강의를 다 들었는데요. 혹시 필요하신 분들이 있을까봐 hateoas 관련 바뀐 부분들 적용한 소스를 공유 드립니다. 저는 maven대신 gradle을 사용하였고 spring-boot 2.2.1 버전을 사용했습니다. 바뀐 부분들 관련해서는 포스팅을 하려다가 위에 링크주신 문서에 잘 나와 있길래 소스만 공유드립니다. 혹시 잘못 사용한 부분들이 있다면 알려주시면 감사하겠습니다. https://github.com/bingbingpa/spring-rest-api
- 34
- 6
- 439