Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
Spring Security: 로그인 후에 원하는 페이지 이동 .defaultSuccessUrl 사용하기 본문
💻Bootcamp Self-Study Revision✨/Spring, Spring Boot, Java, SQL
Spring Security: 로그인 후에 원하는 페이지 이동 .defaultSuccessUrl 사용하기
yjyuwisely 2023. 4. 11. 14:47230411
로그인 성공 후에 원하는 페이지 이동하려면
아래 코드를 쓴다.
.defaultSuccessUrl("/index.html", true)
여기 있는 코드는 SecurityConfiguration.java 제일 하단에 있는 코드이다.
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/","/index**","/assets**","/registration**",
"/js/**", "/css/**", "/img/**", "/image/**", "/video/**","/login?error").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.defaultSuccessUrl("/index.html", true) // I added: redirect to index.html after successful login
.permitAll()
.and()
.logout()
.invalidateHttpSession(true)
.clearAuthentication(true)
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
.logoutSuccessUrl("/login?logout")
.permitAll();
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > Spring, Spring Boot, Java, SQL' 카테고리의 다른 글
MySQL root 비밀번호 입력 안 되는 오류 해결하기 (0) | 2023.04.12 |
---|---|
Spring Security: 전체 이용자한테 보이게 만들기 .antMatchers("/파일**").permitAll() (0) | 2023.04.11 |
Spring Boot: Thymeleaf URL 형태: th:href="@{/주소}" (0) | 2023.04.11 |
Java: Lombok의 어노테이션 (0) | 2023.04.10 |
Comments