22/05/31

안은주·2022년 6월 12일
0
💡 Spring 강의 듣기

[학습내용]


오늘의 삽질

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


🗒 MEMO

💡 이해될 때 까지 집중하자!!

회고🤔


profile
우당탕탕 개발일지🤣

0개의 댓글