일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 인텔리제이 Web 애플리케이션
- java
- 식별자
- 함수
- @PreAuthorize("isAuthenticated()")
- SQL 튜닝
- 비교 연산자
- 예약어
- 친절한 SQL 튜닝
- 친절한 SQL
- 자바의정석
- 오버라이딩
- 이클립스 설치
- SpringSecurity 로그아웃
- StringBuffer
- 스프링시큐리티 로그아웃
- 객체지향
- 오버로딩
- 상속
- SQL
- 반복문
- 객체
- SpringSecurity 로그인
- 논리 연산자
- SQL튜닝
- 산술 연산자
- 배열
- 연산자
- spring 게시판 삭제
- join
- Today
- Total
목록전체 글 (170)
gi_dor
지금까지는 input type="text" 를 사용해 ' - ' 을 입력해서 입력했습니다https://gi-dor.tistory.com/232 회원가입 - SpringSecurity , @Valid , MySQL , MyBatisSpringSecurity - SecurityConfig @Configuration // 빈 설정 @EnableWebSecurity // 스프링 시큐리티 웹보안 활성화 @EnableMethodSecurity(prePostEnabled = true , securedEnabled = true) public class SecurityConfig { @Bean SecurityFilterChain filtegi-dor.tistory.com @Setter@Ge..
ON DELETE CASCADE 설정 ? Delete Cascade 는 부모 테이블의 행이 삭제될 때 연관된 자식 테이블의 행이 자동으로 삭제되는 기능 외래 키(Foreign Key) 관계에 적용되는 경우가 많다 예를 들어, 사용자(User)와 그 사용자가 작성한 댓글(Comment)이라는 두 개의 테이블이 있다면. 댓글 테이블은 사용자 테이블을 참조하는 외래 키 FK 를 가지고 있습니다. 이 때, delete Cascade가 설정되어 있다면 사용자 테이블의 특정 사용자의 행이 삭제되면 그 사용자가 작성한 모든 댓글 또한 자동으로 삭제됩니다. delete Cascade 는 데이터 일관성을 유지하는 데 도움이 될 수 있지만 주의해야 할게 있습니다 예를 들어, 부모 테이블의 레코드를 실수로 삭제했을 때 그와..
@GetMapping("/mypage") public String myPage(Model model , Principal principal) { if (principal == null || principal.getName() == null ) { return "redirect:/user/login "; } else { model.addAttribute("id",principal.getName()); return "redirect:/user/mypage"; } } Principal 객체를 사용해 현재 사용자의 정보를 가져옵니다. 사용자가 인증되지 않은 경우 principal이 null이거나 principal의 이름이 null인 경우 (둘다 같은말 아닌가 ?) /user/login으로 리디렉션 Princip..
사용자 정보 조회 VO @Setter @Getter @ToString @AllArgsConstructor @NoArgsConstructor public class User { private Long no; private String id; private String password; private String name; private String email; private LocalDateTime createdDate; private LocalDateTime updatedDate; private String tel; private String zipCode; private String address; private String addressDetail; private String delYn; public..
오늘은 지난번 시간에 이어서 스프링시큐리티로 로그아웃을 해보겠습니다. 로그인 @Service @RequiredArgsConstructor public class UserService implements UserDetailsService { private final UserMapper userMapper; private final PasswordEncoder passwordEncoder; /** * 주어진 사용자 아이디를 기준으로 사용자의 데이터를 가져와 UserDetails 객체로 반환합니다. * @param id 사용자 아이디 * @return UserDetails 객체 * @throws UsernameNotFoundException 주어진 아이디에 해당하는 사용자를 찾을 수 없는 경우 발생합니다. *..