2025/01/05 15

[Spring boot] Logger 설정

logback-spring.xml 파일 만들기 application.properties###LOGGER#이 설정은 Hibernate가 생성하는 SQL 쿼리를 포맷팅하여 출spring.jpa.properties.hibernate.format_sql=true#이 설정은 Hibernate가 실행하는 SQL 쿼리를 DEBUG 레벨로 로깅logging.level.org.hibernate.SQL=DEBUG#설정을 통해 쿼리에 전달되는 실제 파라미터 값을 로그로 확인logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE logback-spring.xml %yellow(%d{ISO8601}) %..

[PostgreSQL] Mac에 설치하기

나는 M2칩임homebrewbrew install postgresql버전확인postgres -Vbrew services start postgresqlpostgres 접속 나는 비번을 옛날에 설정해둔 게 있어서 그게 그대로 적용psql -U postgres 이제 포트 열어주자postgresql@14 % vi postgresql.conf brew services restart postgresql@14 이제 pgAdmin을 설치하자Download DownloadDownload pgAdmin is a free software project released under the PostgreSQL licence. The software is available in source and binary format from..

DB/PostgreSQL 2025.01.05

[Spring boot] Mac 환경세팅 및 postgreSQL 연결

여기에 들어가면 spring boot를 쉽게 환경 세팅할 수 있다start.spring.io  이거 만들고 난 후 인텔리J 내가 만든 Kkrap-backend 폴더 안에 넣어주면 된다인텔리J로 만들어진 폴더를 열기만 하면 된다.켰더니 이런 경고 창이 뜬다  해결 방법은 stack overflow에서 찾음https://stackoverflow.com/questions/40448344/errorjava-invalid-flag-release Error:java: invalid flag: -releaseI use Java : Java(TM) SE Runtime Environment (build 9-ea+143) Java HotSpot(TM) 64- Bit Server VM (build 9-ea+143, mixe..