일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링
- 자바
- Vue
- 생성
- Eclipse
- GitHub
- 넥사크로
- 쿼리
- 알고리즘
- JPA
- Java
- error
- 오라클
- Spring
- mybatis
- 에러
- aws
- kotlin
- 함수
- JavaScript
- IntelliJ
- 방법
- 시큐리티
- oracle
- jquery
- 프로그래머스
- Git
- db
- 코틀린
- Security
- Today
- Total
목록세팅 (3)
송민준의 개발노트

1. spring Initializr로 새로운 프로젝트 생성 2. Initializr 환경 셋팅( Maven, Java11, Jar) 3. dependencies 설정 (일단 쓰겠다싶은 것 추가함) 4. 프로젝트 finish 5. root 경로에 .editorconfig 라는 파일 생성 root = true [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false 6. properties -> yml 로 바꿔주기 and 기본정보 세팅 spring: # d..

오라클만 쓰다가 몇년 만에 MySql을 쓸라니 헷갈려서 남김. - 설치 방법은 생략 - 설치 후 1. 환경변수 설정 - MySql이 설치된 경로의 bin 경로를 찾는다. ex ) C:\Program Files\MySQL\MySQL Server 8.0\bin - 내PC -> 속성 -> 고급 시스템 설정 -> 고급탭 ->환경 변수 -> 시스템 변수 -> Path를 찾고 편집 클릭 -> 새로만들기 -> 경로 복붙하고 확인하면 어디서든 접근 가능함 2. cmd에 들어감 // root 계정으로 접속함 mysql -u root -p // 비번 입력 후 // 타임존부터 세팅 set time_zone 'Asia/Seoul'; // 유저 생성 create user 'scott'@'%' identified by 'test..

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..