A web service (WS) is either:
- a service offered by an electronic device to another electronic device, communicating with each other via the Internet, or
- a server running on a computer device, listening for requests at a particular port over a network, serving web documents (HTML, JSON, XML, images).
(1)REST(REpresentational State Transfer)
(2) RESTful
(3) Resource
URI(Uniform Resource Identifier), 인터넷 자원을 나타내는 유일한 주소
XML, HTML, JSON
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run".
We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need minimal Spring configuration.
If you’re looking for information about a specific version, or instructions about how to upgrade from an earlier release, check out the project release notes section on our wiki.
1) Spring Boot Applicaton
2) Auto Configuration
개발에 필요한 설정 자동화,사용자가 등록한 환경을 불러서 읽어온다.
3) Component Scan
@SpringBootAppliation
public class MyRestServicesApplication{
public static void main(String[] args){
ApplicationConstext application = SpringApplication.run(MyRestfulServicesApplication.class, args);
System.out.println(str);
}
}