플러그인 설치 가이드 창이 완료되면 이클립스 우측하단에 플러그인 설치 진행 상황이 표시됩니다. 플러그인 설치가 완료되면 Eclipse를 다시 시작하여 적용하세요
<!-- spring boot基本环境 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.2.RELEASE</version> </parent>
<!--web应用基本环境配置 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
<build> <plugins> <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins </build>
package com.springboot.springbootDemo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class App { public static void main( String[] args ) { SpringApplication.run(App.class, args); } }
package com.springboot.springbootDemo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("hello2") public class HelloController { @RequestMapping("") public String hello() { return "helloworld2"; } }
13. 프로젝트에 접속하세요 (낮은 버전은 접속이 불가능할 수 있습니다. 버전 2는 사용 가능합니다)
http://localhost:8012/hello2http://start.spring.io/를 방문하세요
압축 해제 후 eclipse 사용 -> 기존 Maven 프로젝트 -> 압축 해제된 폴더 선택 -> Finsh 완료!
위 내용은 Eclipse에서 springboot 프로젝트를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!