我是这样使用SpringBoot(创建项目)

目录

创建SpringBoot项目

这里是用IDEA做演示,安装配置好开发工具,前面有讲我是这样使用SpringBoot(eclipse&IDEA配置JDK Maven docker)。这一章蒋完成SpringBoot项目的创建,开放一个简单的API接口。通过postman访问API接口。

创建根目录

打开IDEA,到创建项目界面。这里创建一个父模板,后面各个项目以子模块的方式进行。


创建项目界面

点击Create New Project,选中Maven项目,不要选择Create From archetype,点击Next


选择Maven

输入组名(GroupId)、项目名(ArtifactId)、版本号(Version),后点击next
parent

选择目录后点击Finish


选择目录

弹出创建目录的对话框点击OK
对话框

进入IDEA项目界面。
完成

这是parent项目,不需要src。因此,把src目录删除。
删除之后

引入SpringBoot

在parent项目的pom.xml中包含子模块中都会用到的模块,如SpringBoot、lombok等。把pom.xml内容修改如下:



    4.0.0

    com.biboheart.demos
    bhparent
    1.0.0-SNAPSHOT

    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
    

    
        
            org.projectlombok
            lombok
            provided
        

        
            junit
            junit
            test
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
            org.springframework.boot
            spring-boot-starter-web
            
                
                    org.springframework.boot
                    spring-boot-starter-tomcat
                
            
        

        
            org.springframework.boot
            spring-boot-starter-undertow
        

        
            org.apache.httpcomponents
            httpclient
        

        
        
            com.biboheart
            bh-brick
            0.0.6
        
    


当前SpringBoot稳定的最新版是2.1.3,我们就用2.1.3来演示吧。

版本

spring boot 官网中选中Learn可以查看。点击Reference Doc.可以查看spring boot此版本的官方文档。
这个版本要求Java8及以上版本,Maven 3.3以上
这时,界面状态
父项目

创建第一个项目

先来一个最基本的项目,只是提供一个API。

  1. 在bhparent项目名上右键->New->Module


    右键
  2. 选择Maven项目,勾选Create from archetype,使用“maven-archetype-puickstart”,点击“Next”


    创建maven模块
  3. 填写模块ArtifactId为bhhello,GroupId与Version就用默认的,如果有改变,在模块的pom.xml文件也可以修改。


    模块ArtifactId
  4. 确认信息,Maven的配置项在前面已经讲过。这里可以修改配置文件。


    确认信息
  5. 模块名称。前面(第2步)填写的是模块ID,是maven项目属性,是全局的,如果发布到中央仓库,可以用来拉取模块。这里填的是模块名称,也就是项目目录,是本地的。IDEA默认为模块ArtifactId,可以修改。这里就不改了。


    模块名称
  6. 点击Finish完成创建。在IDEA右下方查看创建进度。


    查看进度

项目结构

一个基本的maven项目的目录结构,是这样的。在项目根目录一个pom.xml文件和src文件夹,src文件夹中存放项目源码。在src目录下是main和test两个文件夹,main文件夹下存放主要的项目文件,test文件下存放测试的文件。main和test下的目录结构一样,包含一个java目录和resources目录。java目录中存放java源代码,resources目录中存放配置文件,资源文件等。一般情况下,test中测试main中的类,使用相同的包名。如图,com.biboheart.demos。


目录结构

IDEA默认生成的项目文件名为App和AppTest。这个项目不做测试,删除test/jave/下的包和文件。main中的App改名成HelloApplication。
IDEA的更名操作,右键App文件,Refactor->Rename


更名

更名

完成后项目结构
项目结构

修改bhhello项目的pom.xml文件,把暂时用不上的去掉。内容如下





    
        bhparent
        com.biboheart.demos
        1.0.0-SNAPSHOT
    
    4.0.0

    bhhello

    bhhello
    
    http://www.example.com

    
        UTF-8
    

    
    

项目开发

修改HelloApplication文件内容如下

package com.biboheart.demos;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class HelloApplication {
    public static void main( String[] args ) {
        SpringApplication.run(HelloApplication.class, args);
    }

    @RequestMapping(value = "/hello")
    public String hello(String name) {
        return "hello " + name;
    }
}

在IDEA中运行项目

HelloApplication上右键点击,选择Debug 'HelloApplication',调试运行项目


启动项目

项目开始启动,在控制台中会打印出运行信息。


运行信息

运行完成

在调试窗口中看到Undertow服务器已经启动,端口号为8080。项目已经完成启动。点击左边的红色方框可以停止。
停止按钮

测试

浏览器中GET测试。


浏览器GET

打开postman,或其它http调试工具。如何安装postman的问题请通过其它途径获取。
用GET方式请求。


GET

用POST方式请求
POST

代码分析

这个项目已经完成,到目前为止,这个项目创建,目录调整,maven依赖。进行了一个HelloApplication.java文件的编写。只是做了少量的开发,就完成了一个API服务。这就是spring boot的强大之处,快速构建项目。
下面分析下代码

package com.biboheart.demos;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class HelloApplication {
    public static void main( String[] args ) {
        SpringApplication.run(HelloApplication.class, args);
    }

    @RequestMapping(value = "/hello")
    public String hello(String name) {
        return "hello " + name;
    }
}
  1. @SpringBootApplication
    表示这是一个spring boot项目的入口。它包含了一些自动配置的注解
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
        @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
        @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
  1. @RestController
    表示这是一个RESTful风格的API。配合class中的函数,实现API开放。
  2. main函数
    public static void main( String[] args ) {
        SpringApplication.run(HelloApplication.class, args);
    }

使用org.springframework.boot.SpringApplication类的run函数指定项目入口类,启动项目。

  1. @RequestMapping(value = "/hello")
    表示开放一个API,URI为“/hello”,API的实现是注解下面的函数。
  2. public String hello(String name) {}
    实现“/hello”,可以接收名为name的字符串参数。返回结果为String类型的字符串。当客户访问“http://localhost:8080/hello”时,会找到这个函数执行,并返回执行结果。这里是RESTful风格返回。
  3. spring boot默认服务端口是8080,可以配置,这个后面章节会讲到。

你可能感兴趣的:(我是这样使用SpringBoot(创建项目))