목록Spring Framework (3)
작심삼일
ajax로 List<vo> 데이터 받기
var data = [{'a' : 1, 'b' : 2},{'a' : 1, 'b' : 2},{'a' : 1, 'b' : 2}] $.ajax({ url : url, type : 'post', dataType : 'json', data : JSON.stringify(data), contentType: 'application/json', beforeSend : function(){ }, success : function(res) { } }); @RequestMapping(value = url, method = {RequestMethod.POST,RequestMethod.GET}) @ResponseBody public ModelAndView saveBibReadListJson(@RequestBody VO para..
Spring Framework
2021. 10. 30. 19:20
AOP Alliance 란?
AOP (Aspect-Oriented Programming)는 기존의 여러 미들웨어 환경 (예 : J2EE) 또는 개발 환경 (예 : JBuilder, Eclipse)을 향상시킬 수있는 프로그래밍 기술입니다. aopalliance.sourceforge.net/aopalliance.sourceforge.net/motivations.html AOP Alliance aopalliance.sourceforge.net
Spring Framework
2021. 2. 21. 22:04