일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 공정능력
- tomcat
- Kotlin
- SPC
- NPM
- react
- MSSQL
- es6
- xPlatform
- Android
- JavaScript
- vaadin
- mapreduce
- Eclipse
- Java
- Sqoop
- hadoop
- Express
- IntelliJ
- R
- table
- GIT
- 보조정렬
- SQL
- plugin
- window
- Spring
- Python
- mybatis
- SSL
- Today
- Total
목록분류 전체보기 (661)
DBILITY
제목 그대로 빈을 등록합니다. 2번의 경우 Object만 property setting이 가능하므로, 3번 구현 예가 실제 상황에선 더 적합합니다. Spring 3.1.1에서 테스트되었으며, cglib dependancy가 필요합니다. controller 예 @Controller public class TestController { private static final Logger LOG = LoggerFactory.getLogger(TestController.class); @RequestMapping(value="/test.action") public void dummyMethod(HttpServletRequest request) throws Exception { LOG.debug("{} -------..
springframework은 jakarta commons logging을 사용하므로, commons-logging의 dependancy를 제거(exclude)하고, slf4j-api dependancy 확인 후 jcl-over-slf4j dependancy를 추가한다( slf4j Bridging legacy APIs 참조 ) spring mvc pom sample 1.6 3.1.1.RELEASE 1.6.10 1.6.6 2.2 org.springframework spring-context ${org.springframework-version} commons-logging commons-logging org.springframework spring-webmvc ${org.springframework-ver..
maven jar build시 META-INF정보를 제거하고 싶을때, maven-shade-plugin을 사용합니다. pom.xml에 아래와 같이 추가하고,build 하십시오. maven folder만 제거할 경우 META-INF/maven/**으로 변경합니다. org.apache.maven.plugins maven-shade-plugin 2.4.1 package shade ${project.groupId}:${project.artifactId} *:* META-INF/ 참고로 war내의 META-INF는 maven-war-plugin configuration에 다음과 같이 설정 할 수 있습니다. false
Java Language and Virtual Machine Specifications
날짜와 시간의 표기에 관한 국제 표준 규격 ISO8601를 참고하세요. https://ko.wikipedia.org/wiki/ISO_8601 ISO 8601 - 위키백과, 우리 모두의 백과사전 ISO 8601 Data elements and interchange formats - Information interchange - Representation of dates and times은 날짜와 시간과 관련된 데이터 교환을 다루는 국제 표준이다. 이 표준은 국제 표준화 기구(ISO)에 의해 공포되 ko.wikipedia.org 당해 1일부터 일주일 단위로 계산됩니다. SELECT TO_CHAR(TO_DATE('20161230'),'WW') FROM DUAL; 당일이 속한 주가 하루라도 다음 해인 경우 다음..