본문 바로가기
반응형

전체 글431

Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent! Message : Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent! 위처럼 경고문구가 뜨면 == pom.xml =================================================================== UTF-8 UTF-8 =================================================================== 을 추가해준다. 출처 : http://hiteks.tistory.com/ 2015. 4. 8.
공통/설정데이터 XML파일로 가져오기 === /WEB-INF/spring/appServlet/servlet-context.xml ================= ... ... ======================================================================= └ 빨간색 글 추가 === index.jsp ========================================================== Hello world! The time on the server is ${serverTime}. ======================================================================= └ 빨간색 글 추가 === properties.xml =========.. 2015. 4. 8.
(okky)프로젝트 운영, 개발시 잊지말아야될것들을 몇자 적어보았습니다 http://okky.kr/article/228381 내공이 많이 느껴지는 글. 2015. 4. 7.
숫자로 된 값 휴대전화 포맷으로 만들기 WITH t AS ( SELECT PHONE_NUMBER FROM ADDRESS -- 조회하고자 하는 테이블 및 컬럼 명시 ) SELECT PHONE_NUMBER , REGEXP_REPLACE(PHONE_NUMBER , '(02|031|032|033|041|042|043|051|052|053|054|055|061|062|063|064' ||'|010|011|016|017|018|019' ||'|030|050|060|070|080)' ||'(.+)(.{4})' , '\1-\2-\3' ) ADDRESS FROM t ; ※ jsp에서 코멘트안에서 작업시 \1-\2-\3 의 값을 \\1-\\2-\\3 로 변경을 해주어야 인식한다. 참고사이트 : http://www.gurubee.net/article/56491 2015. 4. 3.
css 연동하기 ===== tiles-defs.xml ==================== ===================================================================== └ css 위치 지정 ===== web.xml ==================== ... ... default *.css ===================================================================== └ 추가 ===== layout.jsp ==================== ===================================================================== └ 경로 적어줌 2015. 4. 2.
이클립스 Git hub 연동 참고사이트 : http://blog.beany.co.kr/archives/3407 2015. 4. 2.
반응형