Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- github
- Algorithm
- 데이터전달
- 제어반전
- ubuntu
- 안드로이드
- 프로그래머스
- activity
- 두 동전
- Android
- 16197
- intent
- 알고리즘
- IntelliJ
- goland
- Java
- 큐빙
- spring
- 백준
- insert
- broadcastreceiver
- 데이터
- data
- service
- Jenknis
- 17837
- git
- 단축키
- mysql
- vscode
Archives
- Today
- Total
목록SpringBoot (1)
해보자
[Spirngboot] h2 Database Connection
dependency 추가 및 설정 파일 내용 추가 build.gradle dependencies { compile('com.h2database:h2') }application.yml spring: jpa: show_sql: true h2: console: enabled: true실행 메모리에서 실행하기 때문에 직접 접근하려면 web console을 사용해야 함 1. Application.java(SpringBootApplication) Run 2. browser 실행 후, 주소창에 localhost://[port-number]/h2-console을 입력
Spring
2020. 9. 9. 03:09