<JSON/XML 데이터 송수신>

​* 클라이언트 : jQuery 이용

​<script type="text/javascript">
$(document).ready(function(){
    $('#jsonOut1').click(function(){
        $.ajax({
            type: "POST",
            url : "${appUrl}/ajax/jsonOut1.html",
            data : {"cd": "sawon"},
            // 수신시(응답)의 미디어타입
            dataType: "json",
            success:function(data){
                //TODO:
                alert(data);
            }
        });
    });
});
</script>
<ol>
    <li> <a href="${appUrl}/ajax/jsonOut1.html?cd=aaa">JSON형식으로 취득(GET사용)</a></li>
    <li> <span id="jsonOut1">JSON형식으로 취득(jQuery사용)</span></li>
</ol>
 

 

 

 

 




<JSON/XML 데이터 송수신>

​* 서버에서 JSON 데이터 출력

​   - 컨트롤러 소스


@Controller
public class JsonController {
   
    @RequestMapping(value="/ajax/jsonOut1", method={RequestMethod.GET, RequestMethod.POST})
    //@RequestMapping(value="/ajax/jsonOut1", headers="Accept=application/json")
    //@RequestMapping(value="/ajax/jsonOut1", produces="application/json")
//미디어타입을 명시적으로 지정
//“produces”는 Spring 3.1부터 이용 가능
    @ResponseBody     public List<UserInfoViewDto> jsonOut (@RequestParam String cd) {
       
        if(StringUtils.isEmpty(departmentCd)) {
            return new ArrayList<UserInfoViewDto>();
        }
       
        List<UserInfoDto> list = /* Servlet/DAO로부터 취득함 */;
 //리턴값 Java객체는 자동적으로 JSON으로 변경 가능함.
        return list;        
    }
}


 

 

 


 




<JSON/XML 데이터 송수신>

​* 서버에서 JSON데이터 출력

- 어노테이션 @ResponseBody 추가


: http header accept가 application/json 이 됨


* 명시적으로 Response 타입 설정 가능


- Accept = application/json


- produces = "application/json"


: spring 3.1 전용


 

 

 

 

 

문서 내에 동일한 Class를 모두 가져 온다.

 

 

 

 

 

 

 

 

 

 

 

 

 

문서 내에 동일한 Element를 모두 가져 온다.

 

 

 

 

 

 

 

 

 

 

 

문서 내에 ID와 일치하는 요소를 가져온다.

 

 

 

 

 

 

 

 

 

 

<Composite Type 변수>

[예제5] 이름을 저장할 수 있는 PL/SQL TABLE 변수를 선언하면 다음과 같습니다.

 

 

[예제6] 사원의 모든 정보를 저장하는 TABLE 타입을 선언하면 다음과 같습니다.

 

 


'오라클 > Oracle,SQL' 카테고리의 다른 글

Composite Type 변수  (0) 2016.01.13
Composite Type 변수  (0) 2016.01.13
Composite Type 변수  (0) 2016.01.11
Composite Type 변수  (0) 2016.01.11
%ROWTYPE Attribute  (0) 2016.01.11

<Composite Type 변수>

 

 

 

 

'오라클 > Oracle,SQL' 카테고리의 다른 글

Composite Type 변수  (0) 2016.01.13
Composite Type 변수  (0) 2016.01.11
Composite Type 변수  (0) 2016.01.11
%ROWTYPE Attribute  (0) 2016.01.11
%TYPE Attribute  (0) 2016.01.11

+ Recent posts