일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- window
- Kotlin
- react
- mapreduce
- GIT
- SSL
- Python
- Sqoop
- R
- hadoop
- mybatis
- Java
- Eclipse
- SQL
- Express
- SPC
- table
- JavaScript
- plugin
- 보조정렬
- tomcat
- 공정능력
- xPlatform
- vaadin
- Spring
- MSSQL
- Android
- es6
- NPM
- IntelliJ
- Today
- Total
목록mybatis (7)
DBILITY
연동하는데 주력했다. 먼저 dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web com.h2database h2 org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.0 application.properties에 db설정 등 처리 #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLOSE_ON_EXIT=FALSE #file base #spring.datasource.url=jdbc:h2:file:/data/testdb..
spring 3.1.1, mybatis 3.2.7, spring-mybatis 1.2.2, oracle 11g r2 환경하에서 spring task로 oracle stored procedure 실행 후 결과를 받는 실례 중 주요코드입니다. sched.java @Scheduled(cron = "${cron.SCHED001_FILTER_INSERT}") public void cronSched001FilterInsert() throws Exception { service.execProcdure("SCHED001_FILTER_INSERT"); } service.java @Async public void execProcdure(String procNm) throws Exception { HashMap comman..