前提・実現したいこと
フロントエンド(Reactjs)からバックエンド(Spring boot)のサーバーにPOSTしJWTを受け取るシステムです。
postmanでは、
method: POST
URL: http:locaclhost:8080/api/auth/login
body:{
"userName":"user",
"password":"pass",
}
を投げればステータス200がちゃんと返ってきます。
フロントエンド側はステータスコード403が返ってきます。
発生している問題・エラーメッセージ
バックエンド側のエラー文
2021-12-24 17:59:48.639[0;39m [31mERROR[0;39m [35m20772[0;39m [2m---[0;39m [2m[nio-8080-exec-6][0;39m [36mo.a.c.c.C.[.[.[/].[dispatcherServlet] [0;39m [2m:[0;39m Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because the return value of "javax.servlet.http.HttpServletRequest.getHeader(String)" is null
フロントエンド側のエラー文
Access to XMLHttpRequest at 'http://localhost:8080/api/auth/login' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. POST http://localhost:8080/api/auth/login net::ERR_FAILED 401
authRequest
1{"userName": 'user', "password": 'pass'}
該当のソースコード
java
1//Controller 2@PostMapping("/api/auth/login") 3 public ResponseEntity<?> login(@RequestBody AuthenticationRequest authenticationRequest)throws InvalidKeySpecException, NoSuchAlgorithmException { 4 final Authentication authentication = authenticationManager.authenticate(new UsernamePasswordAuthenticationToken( 5 authenticationRequest.getUsename(), authenticationRequest.getPassword())); 6 7 SecurityContextHolder.getContext().setAuthentication(authentication); 8 9 //トークン生成 10 User user=(User)authentication.getPrincipal(); 11 String jwtToken=jwtprovider.createToken(user); 12 13 //レスポンス生成 14 LoginResponse response=new LoginResponse(); 15 response.setToken(jwtToken); 16 17 return ResponseEntity.ok(response); 18 } 19}
javascript
1export const userLogin=(authRequest)=>{ 2 return axios({ 3 method:'POST', 4 url:`${process.env.hostUrl||'http://localhost:8080'}/api/auth/login`, 5 data:authRequest 6 }) 7}
javascript
1const LoginPage=({loading,error,...props})=>{ 2 3 const [values, setValues] = useState({ 4 userName: '', 5 password: '' 6 }); 7 8 const handleSubmit=(evt)=>{ 9 evt.preventDefault(); 10 props.authenticate(); 11 12 userLogin(values).then((response)=>{ 13 14 console.log("response",response); 15 if(response.status===200){ 16 props.setUser(response.data); 17 } 18 else{ 19 props.loginFailure('Something Wrong!Please Try Again'); 20 } 21 22 23 }).catch((err)=>{ 24 25 if(err && err.response){ 26 27 switch(err.response.status){ 28 case 401: 29 console.log("401 status"); 30 props.loginFailure("Authentication Failed.Bad Credentials"); 31 break; 32 default: 33 props.loginFailure('Something Wrong!Please Try Again'); 34 35 } 36 } 37 else{ 38 props.loginFailure('Something Wrong!Please Try Again'); 39 } 40 }); 41 } 42 43 return ( 44 <div className="login-page"> 45 ... 46 <input id="username" type="text" className="form-control" minLength={2} value={values.userName} name="userName" required /> 47 ... 48 <input id="password" type="password" className="form-control" minLength={2} value={values.password} name="password" required/> 49 ... 50 <button type="submit">submit</button> 51 ... 52 </div> 53 ) 54}
補足情報(FW/ツールのバージョンなど)
STS4
npx create-react-appよりプロジェクト作成
package.json
json
1"axios": "^0.24.0", 2"react": "^17.0.2",
回答2件
あなたの回答
tips
プレビュー