Tools/Spring2023. 10. 6. 14:28
728x90

Spring 관련 다양한 문서를 한글화하고 있음.

 

https://godekdls.github.io/

 

Hello World!

토리맘의 한글라이즈 프로젝트.

godekdls.github.io

 

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
Posted by 하루y
Tools/MS Windows2023. 10. 3. 11:07
728x90

탐색기를 왜 이렇게 한건지? 공식적인 옵션은 왜 없는 이해할 수가 없다.

 

1. 탐색기에서 옵션 제거하기

먼저 cmd 창을 연다.

 

왼도우키 + R

cmd 입력하고 엔터

그리고, 아래 명령을 수행한다.

reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
taskkill /f /im explorer.exe
explorer

 

2. 옵션 원상 복구하기

옵션을 원상복구할 때는 명령어를 적용하면 바로 반영이 됩니다.

reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

 

end.

728x90
Posted by 하루y
Tools/Spring2023. 9. 16. 21:06
728x90

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

 

 

728x90

'Tools > Spring' 카테고리의 다른 글

Spring 관련 한글 문서  (0) 2023.10.06
spring application.properties 정보  (0) 2023.08.18
J2DBC 참조  (0) 2023.05.09
web Flux 참조  (0) 2023.05.09
Posted by 하루y
Tools/Spring2023. 8. 18. 13:59
728x90

 

https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html

 

Common Application Properties

 

docs.spring.io

 

end.

 

728x90

'Tools > Spring' 카테고리의 다른 글

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
Posted by 하루y