전체 글 썸네일형 리스트형 STS Update Site InstallationSTS can also be installed from the following update sites: Releases: http://www.springsource.com/update/e3.5 Milestone releases: http://www.springsource.com/milestone/e3.5 Nightly snapshots: http://www.springsource.com/snapshot/e3.5 더보기 MySQL Concat 문제 아닌 문제. UTF-8 의 TABLE 구조가 3개의 컬럼을 가지며 데이터가 다음과 같을때 NAME(VARCHAR) | ID(VARCHAR) | NO(INT) 김현기 | eclipse4j | 1 SELECT CONCAT( NAME, ID) FROM .. 이렇게 하면 한글이 깨질까요? 안깨지고 잘나옵니다. 그러나 SELECT CONCAT( NAME, ID, NO) FROM .. 이렇게 하면? 깨집니다. '문자열 + 문자열 + 숫자' 의 형태로 인한 문제인듯 합니다. MySQL GUI 나 SQLYog에서는 정상적으로 나오는데요. JDBC를 통한 정보 호출시 깨지더군요. 버전 문제는 딱히 아닌듯. 그래서 이렇게 하면 됩니다. SELECT CONCAT( NAME, ID, CAST( NO AS CHAR) ) FROM .. 더보기 잠깐 메모. SIMPLE XML http://simple.sourceforge.net/ 더보기 JavaRebel Eclipse 에 적용하기. JavaRebel 은 WAS서버의 재 기동 없이 java(class) 파일등을 수정 반영 할 수 있도록 해줍니다. 자세한 내용은 http://www.zeroturnaround.com/jrebel 1. jrebel.jar 을 C:\MyPlatform\Servers\apache-tomcat-5.5.23\common\lib 이곳에 넣습니다.( 개인취향 가능) 2. Eclipse 에서 Run Configurations 를 선택합니다. 3. VM arguments 에 -noverify -javaagent:C:\MyPlatform\Servers\apache-tomcat-5.5.23\common\lib\jrebel.jar 를 추가합니다. 4. jrebel.xml 을 WebProject/WEB-INF/classes 에.. 더보기 JQuery Checkbox 처리하기. 출처 : http://drupal.org/node/116548 HOWTO: Tell if a checkbox is checked Drupal 5.x Last modified: January 20, 2009 - 20:40 A simple way to tell if a checkbox has been checked using jQuery is with the :checked CSS "pseudo class." Your selector should use the following syntax: $('#edit-checkbox-id:checked') Obviously, you need to replace checkbox-id with the actual name of the form element. This w.. 더보기 이전 1 ··· 56 57 58 59 60 61 62 ··· 71 다음