Spring boot에서도 일반 Spring 과 마찬가지로 JSP 이외의 여러 Template engine을 사용할 수 있다. 하지만, boot 에서는 기본적으로 Thymeleaf, Velocity, JSP를 지원하고 (다른 것도 있음)guide 문서 등을 보면 유독 thymeleaf가 눈에 띄게 많이 등장한다. velocity가 속도도 더 빠르고(engine이 업그레이드된 3.x 버전은 벤치마크 결과를 찾아 보지 않았음) 안정적(?)일 거 같은데 왜 그럴까 찾아보았다. 가장 큰 이유는 thymeleaf 가장 큰 특징이자 장점인 Natural Template일 것 같다.직접 사용한바로는 가독성도 좋고, 협업 시에도 큰 장점이라고 생각한다. @스프링 공식홈(블로그) Thymeleaf 소개 동영상 : thy..
json 데이터를 리턴하는 API에서 @ResponseBody로 controller(method) 설정을 하고,net.sf.json.JSONObject를 리턴 값으로 줘서 MIME type이 application/json인 녀석을 만들고 싶은건데... MessageConverter(String, json 등등)를 설정하는 것 대신,com.fasterxml.jackson.core 라이브러리를 사용하면, default MessageConverter를 통해 자동으로 변환이 되는 거 같다.편하긴 한데.. 구현이 어떻게 되어 있는지는 자세히 알아봐야겠다. 참조 : http://nnoco.tistory.com/235 com.fasterxml.jackson.core jackson-core 2.4.3 com.faste..
아직 삽질 중... http://ismydream.tistory.com/140 MessageConverter 의 종류- StringHttpMessageConverter- FormHttpMessageConverter- ByteArrayMessageConverter- MarshallingHttpMessageConverter- MappingJacksonHttpMessageConverter- SourceHttpMessageConverter- BufferedImagedHttpMessageConverter - MessageConverter(bean)를 사용하는 경우.. or text/html;charset=utf-8
http://stackoverflow.com/questions/27566267/maven-how-to-fill-a-variable-in-web-xml-file I want it url ${targetUrl} local true local http://local.target.url solution (in pom.xml) org.apache.maven.plugins maven-war-plugin 2.6 true
http://seongilman.tistory.com/27 #.properties -> .xml로 변경하는 작업을 진행하였다.#기존 는 삭제하고을 추가해서 value="#{prop['jdbc.driverClassName']}"와 같이 작성하였다. #controller에서는 다음과 같이 사용 @Value("#{prop['test']}") private String value;@Autowired private Properties prop; # view(jsp)에서도 taglib를 통해서 사용가능한데현재 프로젝트에서는 thymeleaf로 인해 사용불가능한 상태이다(-ㅅ-)... 사용가능하도록 설정을 변경하는 방법을 찾는 등 대안이 필요레퍼런스는 상단의 사이트로 가볼 것 #xml 설정은 다음과 같다. 설명 co..