-
[intelliJ] TDD에서 실행쿼리 형태 확인With Computer/Spring Starter Project 2020. 2. 7. 16:53
[책] 스프링부트와 AWS로 혼자 구현하는 웹서비스
resources 디렉토리 아래에 application.properties 파일 생성
(책은 아이콘이 다른거같은데, 나는 걍 file로 생성해줌)
spring.jpa.show_sql=true
변경전
Hibernate: create table posts (id bigint generated by default as identity, author varchar(255), content TEXT not null, title varchar(500) not null, primary key (id))
H2 쿼리문법 적용됨 - MySQL로 변경원할경우, application.properties에서 추가 설정
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
변경후
Hibernate: create table posts (id bigint not null auto_increment, author varchar(255), content TEXT not null, title varchar(500) not null, primary key (id)) engine=InnoDB
반응형'With Computer > Spring Starter Project' 카테고리의 다른 글
[intelliJ] 스프링부트에서 JPA로 데이터베이스를 다뤄보자 (0) 2020.02.07 [intelliJ] Error: HttpMessageNotReadableException (0) 2020.02.07 [intelliJ] Execution failed for task ':compileJava'. (0) 2020.01.31 [intelliJ] 수동으로 코드 검증 (0) 2020.01.31 [IntelliJ] FAILURE: Build failed with an exception. (0) 2020.01.31