전체 글 (67)

DEV/Spring&Java

Spring ajax통신

2018. 10. 5. 17:13
//Controller
public void 메소드(HttpServletRequest request, HttpServletResponse response) throws Exception {
JSONObject jsonObject = new JSONObject();
JSONObject search = new JSONObject();
search.put("name", value);
service.method(search, jsonObject);
response.setContentType("application/x-json; charset=UTF-8");
response.getWriter().print(jsonObject);
}
//Service
public void 메소드(JSONObject search, JSONObject jsonObject) throws java.lang.Exception {
List> list = dao.method(search);
if(list != null && list.size() > 0) {
jsonObject.put("data", JSONArray.fromObject(list));
} else {
jsonObject.put("data", null);
}
}


'DEV > Spring&Java' 카테고리의 다른 글

Spring 인터셉터 Intercepter  (0) 2018.10.05
SHA256 암호화 키  (0) 2018.10.05
Spring Jxls 엑셀다운로드  (0) 2018.10.05
Javascript에서 ajax 많은데이터 넘길때  (0) 2018.10.05
Spring Mysql DB연동  (0) 2018.10.05

POM.xml DEPENDENCY 추가
mybatis, mybatis-spring, mysql

root-context.xml
bean추가
dataSource, sqlSessionFactory, sqlSession
resource폴더에 mybatis-config.xml 생성


#웹 관련 빈설정 > servlet-context.xml
#웹 무관 빈설정 > root-context.xml


'DEV > Spring&Java' 카테고리의 다른 글

Spring 인터셉터 Intercepter  (0) 2018.10.05
SHA256 암호화 키  (0) 2018.10.05
Spring Jxls 엑셀다운로드  (0) 2018.10.05
Javascript에서 ajax 많은데이터 넘길때  (0) 2018.10.05
Spring ajax통신  (0) 2018.10.05

Util

웹 포토샵

2018. 10. 5. 17:09