아이디어 로 Spring Boot 프로젝트 를 만 들 고 시작 과정 도 해 를 설정 합 니 다.

1.조작 절차
① 아이디어 로 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

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기