[Dining-together] h2 연동, apigateway 서버 문제 해결

Jifrozen·2021년 5월 29일
0

Dining-together

목록 보기
6/25

완전 바보같았다...

1. h2 연동문제

spring security 문제였다.
protected void configure(HttpSecurity http) throws Exception {
...
.antMatchers("/auth/", "/*/user/registeration", "/h2-console/").permitAll()
...
}

@Override
public void configure(WebSecurity web) {
	web.ignoring().antMatchers("/v2/api-docs",
		"/configuration/ui",
		"/swagger-resources/**",
		"/configuration/security",
		"/swagger-ui.html",
		"/webjars/**",
		"/h2-console/**");
}

security 설정에 h2-console 접근 권한을 허용해줘야한다.

2. apigateway 서버

http://ip주소:랜덤포트/auth/signup
으로 했을땐 잘 작동하는데
127.0.0.1:8000/member/auth/signup
이렇게 하면 안됐다...

본래 /auth/signup 이렇게 mapping 했던걸 /member/auth/signup 이렇게 불러오니깐 안됐던 거였다.
단순하게
@RequestMapping(value = "/member/auth")
이걸 추가해주니깐 작동했다.

해결하면 별거아닌데....해결하기전에는 이 세상에서 내가 제일 화나있는것같다...

0개의 댓글