欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

最最最最最最简单详细的搭建第一个springboot--------------helloworld

程序员文章站 2022-05-06 13:51:24
...

第一步-----创建文件

先创建一个Project如图:

最最最最最最简单详细的搭建第一个springboot--------------helloworld

点击下一步,然后如图所示

最最最最最最简单详细的搭建第一个springboot--------------helloworld

这里直接点Next,就用默认的配置。然后如图所示,选择依赖(依赖一共有2个,分别是Web里面的Spring Web和SQL里面 的Mysql和Mybatis------下面2图所示)。

最最最最最最简单详细的搭建第一个springboot--------------helloworld

最最最最最最简单详细的搭建第一个springboot--------------helloworld

第二步-----配置文件和下载依赖包

然后就创建好了,由于刚刚进来的时候pom.xml里面添加了很多但是有一段要指明数据库的版本号,这里要自己写

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.11</version>
        </dependency>

其他的就都不用配置了,如果是第一次创建项目就会下载很多的依赖包,下载的时间大概是1小时左右。

最最最最最最简单详细的搭建第一个springboot--------------helloworld

如果是下载好了就会出现如图所示的依赖包,如果下载完成的时候显示有很多红色的波浪线的话,关闭一下软件重新打开就解决了,可能是反应慢了。

除此之外还需要在application.property里面写链接数据库如下面的代码所示:

server.port=8090  
#端口号

spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test1  
#  你的数据库表,这里我在数据库里面有个叫test1的表
spring.datasource.username=root     
#  你的数据库账号
spring.datasource.password=root     
#  你的数据库密码
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#  如果这里报错误可以把cj去掉试试

第三步----创建测试类

在刚刚创建的demo文件目录下,在创建一个controller包,然后再controller里面创建一个Java类如图:

最最最最最最简单详细的搭建第一个springboot--------------helloworld

 

然后在hellowWorld类里面写入如下代码测试:

package com.example.demo.controller;

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

@CrossOrigin
@RestController
@RequestMapping("/test")   //区别访问目录,这里写test就需要在localhost:8080/test(改为其他的也可以)
public class hellowWorld {

    @GetMapping("/hellow")  //这里就是一个地址映射,这里加上这个访问这个测试类就需要localhost:8080/test/hellow(改的什么就是什么)
    public String hellow() {
        return "hellow world";
    }

}

然后完成后,就如图所示,就代表成功了。

最最最最最最简单详细的搭建第一个springboot--------------helloworld

相关标签: Springboot