Skip to content

Commit

Permalink
HSQLDB 메모리 주소로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
fp024 committed Feb 8, 2024
1 parent 5b0b750 commit ec1b825
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdbc.driver=org.hsqldb.jdbc.JDBCDriver
jdbc.url=jdbc:hsqldb:file:./file_db_temp/struts-study
jdbc.url=jdbc:hsqldb:mem:struts-study-annotations
jdbc.username=SA
jdbc.password=
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdbc.driver=org.hsqldb.jdbc.JDBCDriver
jdbc.url=jdbc:hsqldb:file:./file_db_temp/struts-study
jdbc.url=jdbc:hsqldb:mem:struts-study-interceptors
jdbc.username=SA
jdbc.password=
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdbc.driver=org.hsqldb.jdbc.JDBCDriver
jdbc.url=jdbc:hsqldb:file:./file_db_temp/struts-study
jdbc.url=jdbc:hsqldb:mem:struts-study-wildcard-method-selection
jdbc.username=SA
jdbc.password=

1 comment on commit ec1b825

@fp024
Copy link
Owner Author

@fp024 fp024 commented on ec1b825 Feb 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

예전에는 데이터 보려고 파일로 하긴 했는데, 데이터가 궁금할 경우 독립실행형 서버로 실행시켜서 보기 때문에.. 이제는 파일로 저장할 필요는 없다.

이 프로젝트는 단순하고 데이터를 예측하기 쉬워서 그냥 메모리로 바꿨다.

Please sign in to comment.