기본 셋팅
프로그램
Windows 10
-----------------
IntelliJ : 코드작성
Docker - MySQL
MySQL Workbench
Postman
의존성 추가
springboot devtools
lombok
spring data JPA
mysql driver
spring security
spring web
OAuth2 client는 직접구현해보기
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-web' compileOnly 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'mysql:mysql-connector-java' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test'
implementation "org.springframework.security:spring-security-taglibs" implementation "org.apache.tomcat.embed:tomcat-embed-jasper" implementation 'javax.servlet:jstl'
|