Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- jdk
- external
- java
- pom.xml
- web.xml
- query
- 설치
- Spring
- oracle
- DB
- 배열
- legacy
- viewResolver
- collection
- array
- 컬렉션
- sqldeveloper
- undefined error
- Spring #Spring Boot
Archives
- Today
- Total
목록pom.xml (2)
개인코딩공부방
[Spring framework] ajax, multipart Resolver,beanNameReslover xml setting
Spring 프로젝트를 이용하는 웹 프로그래머라면 파일 업로드,DB조회, ajax호출을 위해 xml파일에 설정을 추가해 줘야한다. 필자도 매번 어떤걸 써야했더라 하면서 인터넷을 뒤지곤 했는데 번거롭지 않게 미리글을 작성해둔다. 위의 설정을 하기 위해선 pom.xml파일을 수정하여 필요한 라이브러리를 직접 추가든 자동 추가든 어떻게든 추가하여야 한다. 해당 라이브러리는 다음 링크에 소개되어 있다. ☞pom.xml 설정하기
웹/Spring Framework
2018. 12. 5. 15:46
[Spring framework] 자주쓰는 view Resolver 셋팅하기 ( ModelAndView-Ajax 편)
[pom.xml] com.fasterxml.jackson.core jackson-core 2.7.0 com.fasterxml.jackson.core jackson-databind 2.7.0 com.fasterxml.jackson.core jackson-annotations 2.7.0 [서블릿 설정 xml ] spring 3.x 이상, jackson 2.x이상 은 MappingJackson2JsonView, 그외에는 MappingJacksonJsonView 클래스 명을 사용한다. [controller 예시] /** * ajax컨트롤러 예시 */ @RequestMapping(path = "init", method = RequestMethod.GET, produces="application/json;chars..
웹/Spring Framework
2018. 12. 5. 15:34