본문 바로가기

JavaParkNet113

[Maven] 3rd party jar 를 인스톨하는 방법 공용 레파지토리에 존재하지 않는 경우에 다음의 명령어를 이용하여 로컬 레파지토리에 인스톨할 수 있습니다. mvn install:install-file -Dfile= -DgroupId= -DartifactId= -Dversion= -Dpackaging= 참고 : Guide to installing 3rd party JARs 2013. 10. 11.
국내 오픈소스 WYSIWYG HTML 에디터 * DaumEditorDaumEditor is an online open source WYSIWYG HTML editor from Daum Communications.link => https://github.com/daumcorp/DaumEditor/wiki * SmartEditorSmartEditor2.0 Basic 은 JavaScript로 구현된 웹 기반의 WYSIWYG 편집기이다. 글꼴, 글자 크기, 줄 간격 등을 자유롭게 설정할 수 있으며, 단어 찾기/바꾸기와 같은 편리한 기능을 제공한다.link => http://jindo.dev.naver.com/smarteditor/demo/SmartEditor2.html 2013. 10. 8.
[jQuery] MouseWheel event 마우스에서 휠의 방향에 따른 제어 시 아래의 코드를 이용하자. (Javascript, HTML, Result) 새창으로 보기 2013. 9. 23.
[jQuery] form data binding 보호되어 있는 글 입니다. 2013. 8. 27.
JS Hint JSHint is a tool that helps to detect errors and potential problems in your JavaScript code. 참고 JS Hint : http://www.jshint.com/install/hint-eclipse : http://github.eclipsesource.com/jshint-eclipse/ 2013. 8. 23.
[Thymeleaf] Thymol Static Imports 제목에서 말하듯 Thymeleaf 를 사용시 Thymol 을 통해 html 파일에서의 정적임포트가 가능하다. Thymeleaf 를 이용하여 include 한 파일을 jquery 의 get() 을 통해 해당 위치를 태그를 대체하는 형태로 동작하는데 크롬에서는 다음과 같은 에러를 발생하며 작동하지 않는다. (버전 28.0.1500.95 m) Failed to load resource: Origin null is not allowed by Access-Control-Allow-Origin. file:///C:/dev/workspace/proj1/src/main/webapp/WEB-INF/views/common/menu.html 이때 해당 사이트에서 제시한 아래의 방법을 적용하면 정적인 임포트가 가능하다. 그렇.. 2013. 8. 19.
[Presentation] Deck.js Starter Demo http://ryan-roemer.github.io/deck.js-starter/#title 2013. 8. 16.
Thymeleaf Extras Thymeleaf - Tiles 2 integration module https://github.com/thymeleaf/thymeleaf-extras-tiles2 Thymeleaf - Module for Internet Explorer conditional comments https://github.com/thymeleaf/thymeleaf-extras-conditionalcomments 2013. 8. 14.
spring MVC + tiles 2.2.2 본 포스팅은 STS로부터 생성된 Spring MVC 를 기반으로 한다. 개요 레이아웃 프레임워크로 많이 사용하는 tiles 를 spring MVC 와 연동하는 것을 순서대로 적어본다. pom.xml pom.xml 파일에 tiles 설정과 관련한 라이브러리를 선언한다. 참고로 2012-07-11 에 Version: 3.0.1 이 릴리즈 되었다. 하지만 이 포스팅에서는 2.2.2 를 사용해보도록 한다. 1.63.1.1.RELEASE1.6.101.6.62.2.2 org.apache.tilestiles-extras${org.apache.tiles-version} servlet-context.xml 기존의 InternalResourceViewResolver 대신 TilesViewResolver 를 등록한다. ti.. 2013. 8. 13.