일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- STS
- Tomcat
- 문서
- error
- ubuntu
- oracle
- spring
- myBatis
- maven
- JDBC
- AJAX
- Eclipse
- jpa
- Docker
- Core Java
- PostgreSQL
- MySQL
- git
- Spring Boot
- Python
- Open Source
- MSSQL
- Exception
- 설정
- Source
- JavaScript
- SpringBoot
- 오픈소스
- Thymeleaf
- IntelliJ
- Today
- Total
목록DBCP (6)
헤르메스 LIFE
개발환경 Spring boot 기반 build.gradle implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16' /* Log4JDBC */ log4jdbc.log4j2.properties log4jdbc.spylogdelegator.name=net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator log4jdbc.dump.sql.maxlinelength=0 application.properties # Postgresql Driver 설정 #spring.datasource.hikari.driver-class-name=org.postgresql.Driver #spring.datasource.hikari.jdb..
Spring 개발환경을 갑자기 구축하려고 하다보니, 막막합니다. 하나 하나 구축해 보겠습니다 개발환경 Spring 4.3.30.RELEASE MAVEN 3.8.4 Logback 1.2.9 commons-fileupload 1.4 commons-io 2.6 commons-dbcp 1.4 postgresql driver 42.5.0 pom.xml 4.0.0 SimpleSpring4 SimpleSpring4 0.0.1-SNAPSHOT war SimpleSpring4 Simple Spring4 4.3.30.RELEASE 1.7.30 1.2.9 org.springframework spring-context ${springframework.version} commons-logging commons-logging o..
개발환경 Eclipse Java EE IDE for Web Developers ( Eclipse IDE Neon 3 Packages x64 ) Spring 3.2.14 Maven 3.8.6 MyBastis 3.1.1 PostgreSQL 14.1 Tomcat 8.5.81 JDK 1.8.0_202 DBCP + MyBatis 를 이용한 PostgreSQL 접속 방법 context-common.xml context-datasource.xml context-mapper.xml classpath*:spring/simple/test/sample/**/dao/*Mapper.xml context-transaction.xml mybatis-config-base.xml http://localhost:9090/sample-s..
필수 라이브러리 commons-dbcp.jar commons-collections.jar commons-pool.jar 방법1. server.xml 설정 factory org.apache.commons.dbcp.BasicDataSourceFactory url jdbc:oracle:thin:@localhost:1521:ORCL driverClassName oracle.jdbc.driver.OracleDriver username SCOTT password TIGER maxWait 100 maxActive 5 maxIdle 30000 방법2. server.xml 설정 방법3. server.xml 설정 context.xml WEB-INF/web.xml 공통설정 web.xml 설정 jdbc/MY_DB javax...
원문 : http://kogaeng.tistory.com/292 DBCP (Database connection pooling services) 1.1 DBCP configuration 1.2 connection validation check 문서에 대하여 1.1 DBCP configuration DBCP configuration : http://commons.apache.org/dbcp/configuration.html DBCP BasicDataSource iBATIS SimpleDataSource Option description driverClassName JDBC.Driver required JDBC driver class url JDBC.ConnectionURL required DB Connect..
web.xml contextConfigLocation classpath:/spring/applicationContext-*.xml rest org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/config/servlet-*.xml 1 applicationContext-resource.xml applicationConfig.xml core.log.jdbc.driver.MysqlDriver jdbc:mysql://localhost:3309/springdb scott tiger applicationContext-datasource.xml mybatisConfig.xml https://hermeslog.tis..