Spring Boot +
Github >> https://github.com/jinseong205/Sample_JWT 백엔드 (빌드.그레이들) 종속성 추가 plugins { id ‘java’ id ‘org.springframework.boot’ version ‘2.5.6’ id ‘io.spring.dependency-management’ version ‘1.1.0’ } group = ‘com.jinseong’ version = ‘0.0.1-SNAPSHOT’ sourceCompatibility = ’17’ configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() maven { url ‘https://repo.spring.io/milestone’ } maven { url ‘https://repo.spring.io/snapshot’ } } dependencies { implementation ‘org.springframework.boot:spring-boot-starter-web’ … Read more