新しいアイデア春ブートプロジェクトとのconfigure開始の下で

I.手順

春ブーツプロジェクトを使用するには、①新しいアイデア
②修正のpom.xml
③修正application.properties
④モディファイライトこんにちは春のブートコントローラ
⑤プロジェクト訪問を開始

第二に、詳細な手順

1、ファイル - >新規 - >プロジェクト

 

 2、および次の春Initializrを選択

 

 3、[次へArtifaceを入力してください

 

 4は、ウェブをチェックし、我々は公式のThymeleafのテンプレートエンジンによって推奨テンプレート、他のフレームワーク、ミドルウェアを選択している、データベースは、必要に応じて選択することができ、我々は、手動で設定ファイルを追加する必要はありません、[次へ]を[完了]を選択し

 

 テンプレートエンジンを選択

5、終了することができます

 

 6、春ブーツプロジェクトのディレクトリ構造を参照してください

7、のpom.xmlに以下を追加します

注:あなただけのプロジェクトがコメントに成功した最初のを構築するかどうかをテストしたい場合、彼らは、この時点で接続情報とデータ・ソースにMongoDBを設定しなかったので、あなたは、MongoDBの開始時間のような新しいプロジェクトは、文句を言うだろうときに依存MyBatisのを選択した場合

<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个配置文件,一个开发环境,一个线上环境,通过application.properties自由切换

 

 

 

 

10、启动项目 选择Run、Debug启动
关于@SpringBootApplication注解说明:@SpringBootApplication开启了Spring的组件扫描和springboot的自动配置功能,相当于将以下三个注解组合在了一起
(1)@Configuration:表名该类使用基于Java的配置,将此类作为配置类
(2)@ComponentScan:启用注解扫描
(3)@EnableAutoConfiguration:开启springboot的自动配置功能

 

 

 

 

 

 访问项目 http://localhost:8089/hello

 

 

おすすめ

転載: www.cnblogs.com/qingmuchuanqi48/p/11839335.html
おすすめ