Java:通过创建maven项目来创建springboot工程

1.file--new--project

2. 选择maven,选择jdk

3.点击Create from archetype 选择maven-archetype-webapp

4.选择自己maven的下载位置

位置3是根据你maven配置自动配置的maven仓库

位置2可能要手动修改到对应的setting.xml文件中

5.创建后的样子

6.鼠标指向src 右键 new---directory

7.如果全选图片中的文件

8.完成后的项目目录如下

9.修改pom.xml中的配置文件

9.1 删除pom文件中的build标签的依赖

9.2 在pom.xml中导入父依赖

<!--1.继承springboot父项目-->
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.0</version>
  </parent>

  <dependencies>
    <!--spring-boot-stater-web-->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <!--引入springboot-stater-test-->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <!--scope test 仅仅在测试时有效  运行 打包 不生效-->
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>




</project>

10.创建application.properties文件

在如下位置配置application.properties文件即可

11.创建springboot入口函数

package com.java;

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

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

12.创建controller类

package com.java.controller;

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

@RestController
@RequestMapping("/hello")
public class HelloController {

    @RequestMapping("/ini")
    public String sayHi(){
        return "hello springboot!";
    }
}

13 启动springboot入口函数

14.访问创建的项目

最后就运行springboot项目成功啦

感谢支持哈!!!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值