Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
Hibernate 사용해서 MySQL 결과 콘솔에 바로 보기 본문
💻Bootcamp Self-Study Revision✨/Spring, Spring Boot, Java, SQL
Hibernate 사용해서 MySQL 결과 콘솔에 바로 보기
yjyuwisely 2023. 4. 14. 11:38230414
하이버네이트는 가장 있기 있는 구현체이고 스프링 부트에서 기본 구현체로 활용된다.
하이버네이트는 검증된 기술로서 대규모 애플리케이션에 널리 사용되고 있다.
아래 코드를 사용하면 MySQL의 결과를 이클립스 콘솔에서 바로 볼 수 있어서 편하다.
application.properties나 application.yml에 넣는다.
# your database schema is properly generated or updated by Hibernate.
logging.level.org.hibernate.SQL=DEBUG
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
#Hibernate to automatically generate or update the database schema based on your entity classes.
spring.jpa.hibernate.ddl-auto=update
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > Spring, Spring Boot, Java, SQL' 카테고리의 다른 글
Spring: 뷰 리다이렉션(View redirection): redirect 방식, forward 방식 (0) | 2023.04.15 |
---|---|
Spring: 의존성 주입(Dependency Injection) 이해하기 (0) | 2023.04.15 |
MySQL root 비밀번호 입력 안 되는 오류 해결하기 (0) | 2023.04.12 |
Spring Security: 전체 이용자한테 보이게 만들기 .antMatchers("/파일**").permitAll() (0) | 2023.04.11 |
Comments