아이디어 로 Spring Boot 프로젝트 를 만 들 고 시작 과정 도 해 를 설정 합 니 다.
① 아이디어 로 Spring Boot 항목 새로 만 들 기
② pom.xml 수정
③ application.properties 수정
④ Hello Spring Boot 의 컨트롤 러 를 수정 합 니 다.
⑤ 시작 항목 접근
2.상세 한 절차
1、File-->New-->Project
2.Spring Initializr 를 선택 하고 Next
3、Artiface 를 입력 하고 Next
4.웹,모델 을 선택 합 니 다.저 희 는 공식 적 으로 추천 하 는 Thymeleaf 모델 엔진 을 선택 합 니 다.다른 프레임 워 크,미들웨어,데이터 베 이 스 는 필요 에 따라 선택 하면 됩 니 다.또한 저희 가 수 동 으로 프로필 을 추가 하지 않 아 도 됩 니 다.선택 이 완 료 된 후 Next
선택 모드 엔진
5、Finish 하면 됩 니 다
6.Spring Boot 프로젝트 구조 디 렉 터 리 보기
7.pom.xml 에 다음 과 같은 내용 을 추가 합 니 다.
메모:새 항목 을 만 들 때 의존 하 는 my batis,mongodb 와 같은 시작 을 선택 하면 오류 가 발생 합 니 다.데이터 원본 과 mongodb 의 연결 정 보 를 설정 하지 않 았 기 때문에 프로젝트 구축 성공 여 부 를 테스트 하려 면 먼저 설명 을 하면 됩 니 다.
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.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>
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-data-mongodb</artifactId>-->
<!--</dependency>-->
<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>
<!--<dependency>-->
<!--<groupId>org.mybatis.spring.boot</groupId>-->
<!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
<!--<version>1.3.2</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
8,Hello Spring Boot 의 Controller 작성
package com.example.bootopen.com;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloSpringBootController {
@RequestMapping("/hello")
public String hello() {
return "Hello Spring Boot";
}
}
9.프로필 수정 application.properties
메모:간단 한 테스트 항목 에 포트 만 추가 하면 됩 니 다.다른 데이터 원본,캐 시,정적 자원 경로 도 이 설정 에서 설정 할 수 있 습 니 다.
필 자 는 설정 파일 모드 를 추천 합 니 다.다른 설정 파일 2 개,개발 환경 1 개,온라인 환경 1 개 를 새로 만 들 고 application.properties 를 통 해 자 유 롭 게 전환 합 니 다.
10.시작 항목 선택 Run,Debug 시작
@SpringBootApplication 에 대한 설명:@SpringBootApplication 은 Spring 의 구성 요소 스 캔 과 springboot 의 자동 설정 기능 을 열 었 습 니 다.다음 세 개의 주 해 를 조합 한 것 과 같 습 니 다.
(1)@Configuration:표 이름 은 자바 기반 설정 을 사용 하고 이 를 설정 클래스 로 합 니 다.
(2)@ComponentScan:주석 스 캔 사용 하기
(3)@EnableAutoConfiguration:springboot 의 자동 설정 기능 오픈
접근 항목http://localhost:8089/hello
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Gradle + Kotlin + Thymeleaf에서 Hello World평소에는 toB의 업무 시스템을 만들고 있습니다. 사내에서의 기술의 업데이드가 없기 때문에 개인적으로 여러가지 배우려고 생각해, 처음에 Spring Boot로 간단한 프로젝트를 만들려고 했습니다만 생각보다 걸리거나 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.