IDEA를 사용하여 SpringBoot 프로젝트 생성
1. IDEA를 열고 새 프로젝트를 생성한 후 Spring 초기화를 선택하세요
2. 웹 확인
.
4. 완료를 클릭하여
5. 프로젝트를 입력하고 다음 콘텐츠를 삭제합니다
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.example</groupId> <artifactId>springbootdemo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springbootdemo</name> <description>Demo project for Spring Boot</description> <!--起步依赖--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </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> <!--开发web项目相关依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--springboot单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <!--maven构建--> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
6 자동으로 생성된 SpringbootdemoApplication. 프로그램에 의해 이 클래스가 프로그램의 진입점임을 나타내는 데 사용되는 @SpringBootApplication 주석이 있습니다.
package com.example; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/hello") public String hello() { return "hello,this is a springboot demo"; } }@SpringBootApplication은 Spring의 구성 요소 검색 및 springboot의 자동 구성 기능을 활성화합니다. 이는 다음을 결합하는 것과 같습니다. 세 개의 주석을 함께 (1) @Configuration: 이 클래스의 테이블 이름은 Java 기반 구성을 사용합니다. 이 클래스를 구성 클래스로 사용하세요 (2) @ComponentScan: 주석 검색 활성화 (3) @EnableAutoConfiguration: Turn springboot8의 자동 구성 기능에 대해 .SpringbootdemoApplication 클래스를 실행합니다
9. 테스트:
주소 표시줄에 http://localhost:8080/hello를 입력합니다.
(2) 터미널을 열고 프로젝트가 있는 디렉터리를 입력합니다
java 튜토리얼
"위 내용은 IDEA를 사용하여 SpringBoot 프로젝트 만들기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!