일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jQuery
- input
- CSS
- eGovFramework
- Oracle
- jsp
- 개념
- 오류
- mybatis
- TO_DATE
- 암호화
- JVM
- eGov
- json
- spring
- html
- POI
- javascript
- was
- 태그
- web.xml
- Ajax
- 정의
- array
- select
- Java
- controller
- sql
- 과정평가형
- 함수
- Today
- Total
목록json (4)
web developer
JSON 데이터 파싱userInfoData JSON에서 information 배열 안의 Subject 객체에서 privacy 배열의 value 값을 가져오는 방법을 org.json.simple 라이브러리를 사용하여 구현할 수 있습니다 jsonuserInfoData :{ "url":["https://localhost:8080/test"], "id":"testId", "physical":{"height":"180", "weight":"80"}, "gender":["man", "woman"], "information":[ { "url":["https://localhost:8080/test"], "language":"KR", ..
JSON 데이터 controller(java단)에서 만들어 jsp에 JSON 데이터 보내기POM.xml에 depencency 추가 com.googlecode.json-simple json-simple 1.1modelandView로 가져오기 import org.json.simple.JSONObject;import org.json.simple.JSONArray;@RequestMapping(value = "/test.do", method = RequestMethod.GET)@ResponseBodypublic ModelAndView test() { ModelAndView mv = new ModelAndView(); mv.setViewName("/board/con..
JSON(JavaScript Object Notation)과 JavaScript Object 차이 JSON Object (JavaScript Object) - JS Engine 메모리 안에 있는 데이터 구조 JSON (JavaScript Object Notation) - 객체의 내용을 기술하기 위한 text 파일 - lightweight data-interchange format (가벼운 데이터 교환 형식) - It is easy for humans to read and write. (인간이 읽고 쓰는 것은 쉽다.) - It is easy for machines to parse and generate. (기계가 쉽게 구문 분석하고 생성할 수 있습니다. ) JSON 객체는 JSON(JavaScript Ob..
AJAX란? Ajax란 (asynchronous Javascript and XML)의 줄임말 입니다. 자바스크립트를 이용하여 비동기 식으로 서버와 통신을 합니다. Ajax는 프로그램 언어가 아니다. $.ajax() 메소드 $.ajax() 메소드는 모든 jQuery Ajax 메소드의 핵심이 되는 통합적인 메소드이다 . $.ajax() 메소드는 HTTP 요청을 만드는 강력하고도 직관적인 방법을 제공한다. options $.ajax({ options }); $.ajax({ url : 통신을 원하고자 하는 URL주소를 입력합니다.(필수 입력) data : 서버로 보낼 데이터를 입력합니다. type : get, post 등의 통신 방식을 지정합니다. dataType : 통신의 결과로 넘어올 데이터의 종류를 지정합..