@PutMapping("/user")
public ResponseDto<Integer> update(@RequestBody User user) {
System.out.println("save 호출");
userService.회원수정(user);
Authentication authentication = authenticationManager.authenticate(new UsernamePasswordAuthenticationToken(user.getUsername(), user.getPassword()));
SecurityContextHolder.getContext().setAuthentication(authentication);
return new ResponseDto<Integer>(HttpStatus.OK.value(),1);