일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- es6
- NPM
- 보조정렬
- MSSQL
- xPlatform
- hadoop
- Java
- R
- table
- Kotlin
- Sqoop
- Eclipse
- vaadin
- SQL
- react
- Spring
- Express
- GIT
- mybatis
- 공정능력
- tomcat
- window
- Python
- IntelliJ
- mapreduce
- SPC
- Android
- JavaScript
- SSL
- plugin
- Today
- Total
목록java (69)
DBILITY
https://www.webjars.org/ 위 사이트에서 필요한 library의 dependancy 확인 후 추가 dispatcher의 resource mapping을 설정 할 경우 webjars-locator.jar 가 POM에 있으면 404오류 발생. 둘 중 하나만 사용
sqlite datasource연결, log4jdbc-remix로 sql logger 사용시 jdbc.resultsettable 은 제외하거나 level을 낮춰야 오류가 안난다.
encodingFilter pattern이 "/" 상태에서 도로명 조회시(http://www.juso.go.kr/addrlink/addrLinkUrl.do) 한글 리턴이 깨짐. pattern을 "/*' 바꾸니 됨.나의 실수...귀찮군
연동하는데 주력했다. 먼저 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..
이전에는 inMemory와 사용자 정의 인증을 살펴보았다. 이번에는 jdbcAuthentication을 사용해 보자. dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-jdbc com.h2database h2 application.properties에 h2 database설정 및 관련 테이블과 데이터 생성을 추가한다. #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLO..