Spring Boot 입문
12709 단어 spring-boot웹SpringBootspring자바
1. Spring Boot란?
Spring Boot를 사용하면 프로덕션 지원이 가능한 독립형 Spring 기반 응용 프로그램을 쉽게 만들고 "그대로 실행"할 수 있습니다. 우리는 Spring 플랫폼과 써드 파티를 우리 자신의 주장에 근거한 견해로 파악함으로써 최소한의 수고로 애플리케이션을 작성하기 위해 노력하고 있습니다. - Spring Boot의 기초
2. 특징
3. 구성
3.1. 서버리스 아키텍처
4. 개발 환경
4.1. Eclipse
git clone https://github.com/spring-guides/gs-rest-service.git
http://localhost:8080/greeting
에 액세스하면 JSON에서 {"id":1,"content":"Hello, World!"}
를 반환하는 RESTful 웹 서비스입니다. 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>org.springframework</groupId>
<artifactId>rest-service</artifactId>
<version>0.1.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<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>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
</project>
@SpringBootApplication
어노테이션이 번거로운 설정 작업을 어깨 대신 해 주는 것 같아서, 깔끔하다. Application.java
package hello;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@RestController
어노테이션은 Controller 클래스를 인식하고 @RequestMapping
어노테이션은 /greeting
의 GET 요청을 설정합니다. GreetingController.java
package hello;
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}
Greeting
는 POJO인 클래스로 좋다. Greeting.java
package hello;
public class Greeting {
private final long id;
private final String content;
public Greeting(long id, String content) {
this.id = id;
this.content = content;
}
public long getId() {
return id;
}
public String getContent() {
return content;
}
}
4.2. Spring Tool Suite
5. Framework
5.1. Spring AOP
Spring에서 AOP 에 상세하게 써 있다.
참고문헌
Reference
이 문제에 관하여(Spring Boot 입문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kannkyo/items/c3d25553fc505150bfdf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)