Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바
- transaction
- Servlet
- 알고리즘
- 김영한
- Spring Boot
- SpringBoot
- jpa
- springdatajpa
- Proxy
- 스프링 핵심 기능
- kotlin
- 스프링
- Greedy
- 스프링 핵심 원리
- Thymeleaf
- JPQL
- java
- Exception
- AOP
- spring
- http
- 백준
- 인프런
- 그리디
- Android
- QueryDSL
- JDBC
- db
- pointcut
Archives
- Today
- Total
목록타임아웃 (1)
개발자되기 프로젝트
[로그인] Session 정보와 TimeOut 설정
1. Session 정보를 출력해보자. session에서 time을 가져오면 타입이 long이다. new Date()에 넣어서 날짜 형식으로 바꿈. @Slf4j @RestController public class SessionInfoController { @GetMapping("/session-info") public String sessionInfo(HttpServletRequest request){ HttpSession session = request.getSession(); if(session == null){ return "세션이 없음"; } //세션 데이터 출력 session.getAttributeNames().asIterator() .forEachRemaining(name -> log.info..
인프런/[인프런] 스프링 MVC 2
2021. 9. 26. 14:40