RESTful 웹 서비스 사용
이 장에서는 jQuery AJAX를 사용하여 RESTful 웹 서비스를 사용하는 방법에 대해 자세히 설명합니다.
간단한 Spring Boot 웹 애플리케이션을 만들고 RESTful 웹 서비스를 사용하기 위해 HTML 파일로 리디렉션하는 데 사용되는 컨트롤러 클래스 파일을 작성합니다.
빌드 구성 파일에 Spring Boot 스타터 Thymeleaf 및 웹 종속성을 추가해야합니다.
Maven 사용자의 경우 pom.xml 파일에 아래 종속성을 추가하십시오.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Gradle 사용자의 경우 build.gradle 파일에 아래 종속성을 추가하십시오.
compile group: ‘org.springframework.boot’, name: ‘spring-boot-starter-thymeleaf’
compile(‘org.springframework.boot:spring-boot-starter-web’)
@Controller 클래스 파일의 코드는 다음과 같습니다.
@Controller
public class ViewController {
}
아래와 같이 HTML 파일로 리디렉션하도록 요청 URI 메서드를 정의 할 수 있습니다.
@RequestMapping(“/view-products”)
public String viewProducts() {
return “view-products”;
}
@RequestMapping(“/add-products”)
public String addProducts() {
return “add-products”;
}
이 API http://localhost:9090/products 아래와 같이 응답으로 아래 JSON을 반환해야합니다.
[
{
"id": "1",
"name": "Honey"
},
{
"id": "2",
"name": "Almond"
}
]
이제 클래스 경로의 templates 디렉토리 아래에 view-products.html 파일을 만듭니다.
HTML 파일에서 jQuery 라이브러리를 추가하고 페이지로드시 RESTful 웹 서비스를 사용하는 코드를 작성했습니다.
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.getJSON("http://localhost:9090/products", function(result){
$.each(result, function(key,value) {
$("#productsJson").append(value.id+" "+value.name+" ");
});
});
});
</script>
POST 메소드와이 URL http://localhost:9090/products 아래의 요청 본문과 응답 본문을 포함해야합니다.
요청 본문의 코드는 다음과 같습니다.
{
"id":"3",
"name":"Ginger"
}
응답 본문의 코드는 다음과 같습니다.
Product is created successfully
이제 클래스 경로의 templates 디렉토리 아래에 add-products.html 파일을 만듭니다.
HTML 파일에 jQuery 라이브러리를 추가하고 버튼 클릭시 RESTful 웹 서비스에 양식을 제출하는 코드를 작성했습니다.
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function() {
var productmodel = {
id : "3",
name : "Ginger"
};
var requestJSON = JSON.stringify(productmodel);
$.ajax({
type : "POST",
url : "http://localhost:9090/products",
headers : {
"Content-Type" : "application/json"
},
data : requestJSON,
success : function(data) {
alert(data);
},
error : function(data) {
}
});
});
});
</script>
전체 코드는 다음과 같습니다.
Maven – pom.xml 파일
<?xml version = "1.0" encoding = "UTF-8"?>
<project xmlns = "http://maven.apache.org/POM/4.0.0"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tutorialspoint</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Gradle의 코드 – build.gradle은 다음과 같습니다.
buildscript {
ext {
springBootVersion = ‘1.5.8.RELEASE’
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: ‘java’
apply plugin: ‘eclipse’
apply plugin: ‘org.springframework.boot’
group = ‘com.tutorialspoint’
version = ‘0.0.1-SNAPSHOT’
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile(‘org.springframework.boot:spring-boot-starter-web’)
compile group: ‘org.springframework.boot’, name: ‘spring-boot-starter-thymeleaf’
testCompile(‘org.springframework.boot:spring-boot-starter-test’)
}
아래에 주어진 컨트롤러 클래스 파일-ViewController.java는 아래에 주어진다-
package com.tutorialspoint.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class ViewController {
@RequestMapping(“/view-products”)
public String viewProducts() {
return “view-products”;
}
@RequestMapping(“/add-products”)
public String addProducts() {
return “add-products”;
}
}
view-products.html 파일은 다음과 같습니다.
<!DOCTYPE html>
<html>
<head>
<meta charset = "ISO-8859-1"/>
<title>View Products</title>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.getJSON("http://localhost:9090/products", function(result){
$.each(result, function(key,value) {
$("#productsJson").append(value.id+" "+value.name+" ");
});
});
});
</script>
</head>
<body>
<div id = "productsJson"> </div>
</body>
</html>
add-products.html 파일은 다음과 같습니다.
<!DOCTYPE html>
<html>
<head>
<meta charset = "ISO-8859-1" />
<title>Add Products</title>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function() {
var productmodel = {
id : "3",
name : "Ginger"
};
var requestJSON = JSON.stringify(productmodel);
$.ajax({
type : "POST",
url : "http://localhost:9090/products",
headers : {
"Content-Type" : "application/json"
},
data : requestJSON,
success : function(data) {
alert(data);
},
error : function(data) {
}
});
});
});
</script>
</head>
<body>
<button>Click here to submit the form</button>
</body>
</html>
주요 Spring Boot Application 클래스 파일은 다음과 같습니다.
package com.tutorialspoint.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
이제 실행 가능한 JAR 파일을 만들고 다음 Maven 또는 Gradle 명령을 사용하여 Spring Boot 애플리케이션을 실행할 수 있습니다.
Maven의 경우 아래와 같이 명령을 사용하십시오.
mvn clean install
“BUILD SUCCESS”후 대상 디렉토리에서 JAR 파일을 찾을 수 있습니다.
Gradle의 경우 아래와 같이 명령을 사용하십시오.
gradle clean build
“BUILD SUCCESSFUL”후에 build / libs 디렉토리에서 JAR 파일을 찾을 수 있습니다.
다음 명령을 사용하여 JAR 파일을 실행하십시오-
java –jar <JARFILE>
이제 응용 프로그램이 Tomcat 포트 8080에서 시작되었습니다.
이제 웹 브라우저에서 URL을 누르면 다음과 같이 출력을 볼 수 있습니다.
http : // localhost : 8080 / view-products
http : // localhost : 8080 / add-products
이제 버튼을 클릭하세요 Click here to submit the form 다음과 같이 결과를 볼 수 있습니다.
이제 제품보기 URL을 누르고 생성 된 제품을 확인합니다.
http://localhost:8080/view-products
Angular JS
Angular JS를 사용하여 API를 사용하려면 다음 예제를 사용할 수 있습니다.
다음 코드를 사용하여 GET API를 사용하는 Angular JS 컨트롤러를 만듭니다. http://localhost:9090/products −
angular.module('demo', [])
.controller('Hello', function($scope, $http) {
$http.get('http://localhost:9090/products').
then(function(response) {
$scope.products = response.data;
});
});
다음 코드를 사용하여 POST API를 사용하는 Angular JS 컨트롤러를 만듭니다. http://localhost:9090/products −
angular.module('demo', [])
.controller('Hello', function($scope, $http) {
$http.post('http://localhost:9090/products',data).
then(function(response) {
console.log("Product created successfully");
});
});
Note − Post 메소드 데이터는 상품 생성을위한 요청 본문을 JSON 형식으로 나타냅니다.