Ajax(Asynchronous JavaScript and XML, 에이잭스)는 비동기적인 웹 애플리케이션의 제작을 위해 아래와 같은 조합을 이용하는 웹 개발 기법이다. 예문을 통해서 설명하자면, $.ajax({ type:"post", url: "../ss/open.do", data:fileconifg, datatype: "json", success:function(jsondata){ openfile(jsondata); message("워크스페이스를 불러왔습니다."); }, error:function(xhr, status, error){ // }, complete:function(xhr, status){ // } }); type - 전송방식 ex) get, post url - 호출할 url. 스프링의 경..