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 | 31 |
Tags
- 시큐리티
- aws
- 에러
- Eclipse
- IntelliJ
- 오라클
- kotlin
- 쿼리
- oracle
- jquery
- JPA
- Java
- Vue
- 넥사크로
- db
- Spring
- 코틀린
- Security
- 자바
- 생성
- GitHub
- Git
- mybatis
- 프로그래머스
- JavaScript
- 함수
- 스프링
- error
- 알고리즘
- 방법
Archives
- Today
- Total
송민준의 개발노트
DB에 세션 저장을 위한 의존성 등록 본문
build.gradle에 아래 코드 추가
compile('org.springframework.session:spring-session-jdbc')
application.properties에 아래 코드 추가
spring.session.store-type=jdbc
로그인 후
h2-console에 입력으로 확인
select * from spring_session
'웹 > Spring boot' 카테고리의 다른 글
테스트코드에 시큐리티 적용하기 (0) | 2020.03.19 |
---|---|
네이버 간편로그인(SSO, oauth2) (1) | 2020.03.17 |
세션 저장소 (0) | 2020.03.17 |
세션값 중복 방지 (0) | 2020.03.16 |
Springboot+Oauth2(Spring Security) (0) | 2020.02.28 |