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
- 생성
- Security
- 알고리즘
- 프로그래머스
- JavaScript
- GitHub
- error
- 스프링
- db
- 시큐리티
- Java
- 넥사크로
- mybatis
- 에러
- 오라클
- Vue
- IntelliJ
- JPA
- 함수
- Git
- 코틀린
- kotlin
- jquery
- oracle
- 방법
- 자바
- aws
- Spring
- 쿼리
- Eclipse
Archives
- Today
- Total
목록gradle (2)
송민준의 개발노트
스프링부트 포트 변경(intellij-인텔리제이) gradle
1. 최상단메뉴 Run - Edit Configurations 2. Environment variables 추가 - Name : server.port - value : 7077(원하는 포트번호)
웹/Spring boot
2020. 2. 16. 01:13

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