728x90
'Tools > Spring' 카테고리의 다른 글
[SpringBoot 2.7.*] H2 Jdbc 설정, schema(DDL) 및 data(DML) (0) | 2023.09.16 |
---|---|
spring application.properties 정보 (0) | 2023.08.18 |
J2DBC 참조 (0) | 2023.05.09 |
web Flux 참조 (0) | 2023.05.09 |
[SpringBoot 2.7.*] H2 Jdbc 설정, schema(DDL) 및 data(DML) (0) | 2023.09.16 |
---|---|
spring application.properties 정보 (0) | 2023.08.18 |
J2DBC 참조 (0) | 2023.05.09 |
web Flux 참조 (0) | 2023.05.09 |
탐색기를 왜 이렇게 한건지? 공식적인 옵션은 왜 없는 이해할 수가 없다.
먼저 cmd 창을 연다.
왼도우키 + R
cmd 입력하고 엔터
그리고, 아래 명령을 수행한다.
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
taskkill /f /im explorer.exe
explorer
옵션을 원상복구할 때는 명령어를 적용하면 바로 반영이 됩니다.
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
end.
windows service 모니터 후 restart 하기 (2) | 2023.07.19 |
---|---|
Power Shell을 이용한 프로그램 설치 (0) | 2020.07.31 |
mac 2011 early 버전에 windows 10 인스톨 (0) | 2020.01.17 |
H2 버전 조정
<properties>
<java.version>11</java.version>
<!-- 2.x 최신버전에서 validation이 강화되어, 버전을 낮춰서 테스트 진행하는 것으로 보임. JJH -->
<h2.version>1.4.196</h2.version>
</properties>
1. 1H2 File DB 및 Memory DB 설정
2. 초기 schema(DDL) 및 data(DML) 설정
spring:
datasource:
# 1. H2 file DB. 어플리케이션 경로에서 생성. DB경로. AUTO_SERVER는 다중접속여부
url: jdbc:h2:file:./db/h2/data;AUTO_SERVER=true
# 2. H2 file DB. ~ 는 사용자 계정아래에 DB 생성.
# url: jdbc:h2:~/db/h2/data;AUTO_SERVER=true
# 3. H2 Memory DB
# url: jdbc:h2:mem:testdb
driverClassName: org.h2.Driver
username: sa
password:
h2:
console:
enabled: true
path: /h2-console
sql:
init:
mode: always
schema-locations: classpath:/h2/schema.sql
data-locations: classpath:/h2/data.sql
# jpa:
# defer-datasource-initialization: true
Spring 관련 한글 문서 (0) | 2023.10.06 |
---|---|
spring application.properties 정보 (0) | 2023.08.18 |
J2DBC 참조 (0) | 2023.05.09 |
web Flux 참조 (0) | 2023.05.09 |
Spring 관련 한글 문서 (0) | 2023.10.06 |
---|---|
[SpringBoot 2.7.*] H2 Jdbc 설정, schema(DDL) 및 data(DML) (0) | 2023.09.16 |
J2DBC 참조 (0) | 2023.05.09 |
web Flux 참조 (0) | 2023.05.09 |