milkbottle0305

Results 2 comments of milkbottle0305

+ 추가합니다. [authorization_request_not_found] 저 화면에서 계정을 선택하면 ![image](https://user-images.githubusercontent.com/52454255/223433239-9e39f0df-6421-4c6f-80f8-5f8deb81cb97.png) ![image](https://user-images.githubusercontent.com/52454255/223433304-62b9bd35-a27c-45d5-8fa1-2ce462be6b38.png) org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "create table user (id bigint generated by default as identity, email varchar(255) not null, name varchar(255) not...

검색해서 해결하였습니다. h2에서는 User이라는 예약어가 있어서 User domain이름을 @Table(name="users") 어노테이션으로 이름을 수정하니 잘 됩니다. 이후 select나 update같은 dml이나 create table같은 ddl를 사용할때 Users인지 확인하면 될것 같습니다. https://spongeb0b.tistory.com/335 아래글 참조