Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- jquery
- 쿼리
- 에러
- 알고리즘
- JPA
- JavaScript
- Security
- 넥사크로
- 생성
- db
- mybatis
- Spring
- 방법
- 시큐리티
- aws
- error
- IntelliJ
- Eclipse
- 스프링
- 코틀린
- 자바
- 프로그래머스
- GitHub
- 오라클
- oracle
- kotlin
- Vue
- Git
- 함수
- Java
Archives
- Today
- Total
목록Clone (1)
송민준의 개발노트

1. new project -> gradle -> java -> next 2. Groupid, ArtifactId 설정 -> finish 3. build.gradle 설정 buildscript { // ext는 전역변수를 설정하겠다는 의미 ext { springBootVersion = '2.1.7.RELEASE' } repositories { mavenCentral() jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } // 자바와 부트를 사용하기 위한 필수 4가지 플러그인 apply plugin: 'java' apply plugin: 'eclipse..
웹/Spring boot
2020. 2. 12. 23:27