일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 이미지주소추출
- 재귀쿼리
- mongodb
- security.limit_extensions
- node 이미지 저장
- 특정 패키지 업데이트 중지 / 해제
- 쁘띠프랑스
- php-fpm
- xcache
- 뒤로 가기
- 앞으로 가기
- strtotime
- ssmtp
- 외래키
- no key alg
- 중독 게임
- node.js
- rsync
- 훼인
- openfire
- php
- quota
- 태권브이
- 워드프레스한글팩
- 리플리케이션 오류
- set foreign_key
- 날짜계산
- MySQL
- simplexml_load_filesimplexml
- 태권v
- Today
- Total
목록전체 글 (245)
일상 기록 창고
1. root-context.xml 에 업로드 관련 빈 설정 추가 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSize" value="100000000" /> </bean> 2. Controller 설정 @RequestMappint(value="경로", method={ RequestMethod.GET, RequestMethod.POST }) public String mProc( Model model, ..
1. pom.xml 설정 <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> </dependency> 2. 간단사용법 {"msg":"OK","files":[{"sFileName":"s5711487049840.png","sOrgFileName":"4.png","sFileSize":37727, "sFilePath":"\/\/localhost\/kong\/s5711487049840.png","sImage"..
From input 에 데이터 처리 시 날짜처리나 숫자 처리시 등에 다음과 같이 처리 <fmt:formatDate value="${aRow.dtDate}" type="both" pattern="yyy-MM-dd" var="thedtDate" /> <input type="text" name="dtDate[]" value="<c:out value="${thedtDate}" />" placeholder="구매일" readonly />
Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 원인 : maven 라이브러리 경로가 삭제되어서 발생 다음과 같이 해결 Deployment Assembly 에 add 클릭 후 Java Build Path Entries 선택 후 Maven Dependencies 선택 후 add 완료.
ObjectUtils 클래스 사용 String / List / Map / [] 형태의 Object들의 null 그리고 빈값을 체크해 준다. if( ObjectUtils.isEmpty( xxx ) ) { }else{ }
비교 연사자 관련하여 오류가 발생되기 때문에 다음과 같이 사용한다. <!CDATA[[ SELECT * FROM TB WHERE cDate > CURRENT_DATE() ]]> 만약에 동적 쿼리를 사용하기 위하여 다음과 같이 사용할 경우 오류가 발생한다. <!CDATA[[ SELECT * FROM TB WHERE cDate > CURRENT_DATE() <if test="a != null"> AND name = #{a} &l..
pom.xml 에 다음과 같이 세팅하자. <!-- https://mvnrepository.com/artifact/org.lazyluke/log4jdbc-remix --> <dependency> <groupId>org.lazyluke</groupId> <artifactId>log4jdbc-remix</artifactId> <version>0.2.7</version> </dependency> log4j.xml 을 열어 다음을 추가 <appender name="console-infolog" class="org.a..
쿼리가 자주 변동이 생겨 매번 다 매칭을 할 수 없어 대체하는 걸 찾다가 다음과 같이 진행.. Interface 에 다음과 같이 구현하고 다른 부분도 알아서 구현.. List<HashMap<String, String>> getData( HashMap<String, String> map ); 사용법 HashMap<String, String> userInfo = new HashMap<String, String>(); ..
https://www.tutorialspoint.com/jsp/jstl_format_formatnumber_tag.htm
Top, 메뉴, footer 등등 공통적으로 여러군데 사용 하는 경우를 위해 tiles 적용하기 Url : http://tiles.apache.org/framework/index.html 1. pom.xml 에 세팅 ( 몇가지 더 있지만 이거 하나로 충분해서 하나만... ) <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-extras</artifactId> <version&..