【SpingBoot学习笔记】SpingBoot之helloworld

    虽然已经参与SpringBoot项目快两个年头,像大家一样,每天忙于开发新功能和修改bug,确实也做了不少核心功能,但能静下新来从基础开始学习的机会一直很少,不找借口,一个原因是忙,一个是懒。。。

造成的结果就是即使写了再多的业务模块,对于提升开发动手也没有任何帮助,而且项目中用到的基本都是公司已搭建好的基础平台,要求开发人员更倾向于业务模块开发,其实需要我们自己动手搭建或改造平台的机会少之又少,当有时候需要自己改造一些平台基础配置时,会手忙脚乱,各位请吸取我的教训,当你感觉工作到达瓶颈时,不妨静下心重新来学一学基础,一定也会有所收获。

SpingBoot之helloworld

一.打开Idea工具,新建maven项目helloworld

 

二.修改pom.xml文件,增加依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!--默认生成-->
<modelVersion>4.0.0</modelVersion>

<groupId>com.test</groupId>
<artifactId>helloword</artifactId>
<version>1.0-SNAPSHOT</version>

<!--手动引入SpringBoot父级依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
</parent>

<!--手动引入web项目依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

<!--手动引入编译构建插件-->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin </artifactId>
</plugin>
</plugins>
</build>
</project>

三.创建启动类

package com.test;

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

@SpringBootApplication
public class MySpringBootApplication {

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

} 

 注意,启动类需要放在包目录下,不能直接放在java目录下,否则会报错,启动类类名可自定义,除过类名,其他为标准写法,可直接照搬。

 

 

 

四.创建HelloWorldRestController类

需要添加@RestController注解,不配置method类型时,使用post或get请求都可以,因此可直接使用浏览器来测试

package com.test.webservice;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldRestController {

    @RequestMapping("/")
    public String hello(){
        return	"Hello	world!";
    }
}

五.启动并访问

启动项目后日志如下

 

打开浏览器,输入http://localhost:8080/查看结果

 

也可以指定请求类型为POST

package com.test.webservice;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldRestController {

    @RequestMapping(value = "/",method = RequestMethod.POST)
    public String hello(){
        return	"Hello	world!";
    }
}

 此时只能用POST方式访问,否则报错,打开Postman

 GET方式访问(报错)

 

 

 

修改为post请求,可正常访问

此示例来源于加的学习群中发的PDF资料上的,POM文件引入了Spring Boot应用的父级依赖spring-boot-starter-parent,而不是单独引入所用的jar包,作为初学者就比较方便了,当然对于大佬来说,熟悉每个包的作用,可自己选择性的写依赖,而不是这么一股脑全部引入。

 

posted @ 2022-05-31 13:44  泠雨0702  阅读(34)  评论(0编辑  收藏  举报