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