spring boot学习-通过IDEA去写一个helloworld的项目

使用spring boot 去写一个hello world

参考的内容:
1.官网-Spring Boot 基础
2.腾讯课堂关于视频教程-Java分布式互联网架构/微服务/高性能/springboot/springcloud

一、Spring Boot 是什么?

Spring Boot 的目的是提供一组工具,以便快速构建容易配置的 Spring 应用程序。

二、通过idea编写 Hello, World!

现在您已准备好开始直接使用 Spring Boot 了。本节中的示例基于一个名为 HelloWorldSpringBootMain 的简单应用程序。您可以和我一起练习这个应用程序开发示例。

让我们行动起来,创建一个新的 Maven 项目!

1. 创建 Maven 项目

IDEA 中,转到 File > New Project 并选择 Maven > Maven Project,如图 1 所示。

图 1. 选择一个 SPRING 项目

spring boot学习-通过IDEA去写一个helloworld的项目_第1张图片
选择naven项目

单击 Next,在随后的对话框中(未给出)再次单击 Next。

图 2. 选择 Maven quickstart 架构类型

spring boot学习-通过IDEA去写一个helloworld的项目_第2张图片
用于选择 Maven 快速启动架构类型的 New Project 对话框的屏幕截图

勾选一下Create from archetype,选择maven-archetype-quickstart
单击 Next。

最后,输入工件设置,如图 3 所示。

图 3. 选择 Maven 工件设置

spring boot学习-通过IDEA去写一个helloworld的项目_第3张图片
用于选择 Maven 架构类型设置的 New Project 对话框的屏幕截图

我为 HelloWorldSpringBootMain 应用程序使用了以下设置:

  • Group Id:cn.tx.springboot
  • Artifact Id:HelloWorldSpringBootMain
  • Version:1.0-SNAPSHOT

单击 Finish 创建该项目。

2. 编辑POM

在原有的pom文件基础上加上starter-parent。具体可参考下面官网的内容:
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#using-boot-starter

修改POM.xml




  4.0.0

  cn.tx.springboot
  demo_01
  1.0-SNAPSHOT

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

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

  
  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  


3. 写java文件

1)主文件HelloWorldSpringBootMain.java

package cn.tx.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * Hello world!
 *
 */
@SpringBootApplication
public class HelloWorldSpringBootMain
{
    public static void main(String[] args )
    {
        SpringApplication.run(HelloWorldSpringBootMain.class,args);
    }
}

2)controller文件TestController.java

package cn.tx.springboot;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class TestController {

    @ResponseBody
    @RequestMapping("/hello")
    public String hello(){
        return "helloworld";
    }
}

然后在主程序页面,开始运行,服务会启动在8080端口
访问:
http://localhost:8080/hello

4. 遇到的问题记录

问题

Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.

org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.context.ApplicationContextException: Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:155) ~[spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:540) ~[spring-context-5.1.2.RELEASE.jar:5.1.2.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) [spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) [spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) [spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) [spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) [spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at cn.tx.springboot.HelloWorldSpringBootMain.main(HelloWorldSpringBootMain.java:14) [classes/:na]
Caused by: org.springframework.context.ApplicationContextException: Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:204) ~[spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:178) ~[spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:152) ~[spring-boot-2.1.0.RELEASE.jar:2.1.0.RELEASE]
    ... 8 common frames omitted

解决

在主文件中,没有加@SpringBootApplication,导致了这个问题

错误代码
package cn.tx.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

public class HelloWorldSpringBootMain
{
    public static void main(String[] args )
    {
   SpringApplication.run(HelloWorldSpringBootMain.class,args);
    }
}
正确代码
package cn.tx.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

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

5. 通过jar包启动

1)修改pom文件

加上这个项目的包的类型为jar

...
  cn.tx.springboot
  demo_01
  1.0-SNAPSHOT
  jar
...

2)打jar包

在idea的右上角,选择lifecycle里的package,去生成jar包,生成的jar包会在项目文件中的target里。

spring boot学习-通过IDEA去写一个helloworld的项目_第4张图片
选择package去生成jar包

3)终端执行jar包

在终端中通过命令java -jar 包名执行jar包
还是通过8080端口访问到web服务
http://localhost:8080/hello

spring boot学习-通过IDEA去写一个helloworld的项目_第5张图片
终端执行jar包

至此,第一个springboot的项目就通过了

你可能感兴趣的:(spring boot学习-通过IDEA去写一个helloworld的项目)