org.h2.jdbc.JdbcSQLSyntaxErrorException 에러가 나오면,
application.properties에 아래 코드 추가.
**spring.jpa.defer-datasource-initialization = true
spring.jpa.properties.hibernate.globally_quoted_identifiers = true**
https://mygummy2.tistory.com/83
spring-boot-starter-security 403 Forbidden 에러 대처
WebSecurityConfig에 밑줄 그은거 추가.
@Override
protected void configure(HttpSecurity http) throws Exception {
// 회원 관리 처리 API (POST /user/**) 에 대해 CSRF 무시
http.csrf()
.ignoringAntMatchers("/user/**");
**http.cors().and();
http.csrf().disable();**
https://effectivecode.tistory.com/1018