| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Source
- Spring Boot
- maven
- 문서
- IntelliJ
- Python
- 설정
- PostgreSQL
- error
- MSSQL
- jpa
- myBatis
- Core Java
- JavaScript
- oracle
- git
- AJAX
- 오픈소스
- SpringBoot
- Thymeleaf
- Docker
- STS
- Eclipse
- JDBC
- Exception
- ubuntu
- Open Source
- spring
- MySQL
- Tomcat
- Today
- Total
목록session (2)
헤르메스 LIFE
티베로 사용 중 아래의 오류가 발생했습니다.Caused by: java.sql.SQLException: JDBC-12003:Unable to open a session. at com.tmax.tibero.jdbc.err.TbError.makeSQLException(Unknown Source) at com.tmax.tibero.jdbc.err.TbError.newSQLException(Unknown Source) at com.tmax.tibero.jdbc.msg.common.TbMsgError.readErrorStackInfo(Unknown Source) at com.tmax.tibero.jdbc.msg.TbMsgEreply.deserialize(Unknown Source) at com.tmax.tiber..
//세션의 유효시간을 20초로 셋팅 //세션의 유효시간을 얻어오기 [ 서블릿에서 세션(Session) Tracking ] 자바랜드 (http://javaland.idcsoft.net) 에서 발췌한 글입니다. ---------------------------------------------------------------------- 1. 기본적인 Session 처리를 위하여 ... Session 처리를 위하여 우리는 HttpSession session = req.getSession(boolean create); 라는 문장을 사용합니다. 여기에서 우선 3가지를 알고 있어야하는데 그것의 getSession의 사용입니다. ㅇ getSession(true) : Session object를 얻어옴에 있어서 Req..