SpringBoot 学习心得(一) 使用Maven 完成Helloworld

本文介绍了如何使用Maven创建SpringBoot项目,从创建Maven项目到添加依赖,再到编写主程序和Controller,最后运行并解释了SpringBoot的自动配置原理,包括父依赖的作用、导入的依赖以及@RestController和@Controller的区别。
摘要由CSDN通过智能技术生成

SpringBoot 学习心得(一) 使用Maven 完成Helloworld

一、创建maven项目

我们可以使用IDEA以及Eclipse开发SpringBoot项目,这里推荐使用IDEA开发,idea集成了SpringBoot的启动框架,eclipse需要下载插件才能进行创建。

我们首先创建项目:

1.IDEA创建maven项目

打开IDEA->maven->输入Group ID:com.nwpu ArtifactId:hellospringboot->创建成功

2.Eclipse创建Maven项目

打开Eclipse->maven->next->勾选Create a simple project->next->输入Group ID:com.nwpu ArtifactId:hellospringboot->finish->创建成功

二、添加依赖

我们创建一个比较简单的SpringBoot应用所以添加依赖如下:

1.添加父依赖:

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.6.RELEASE</version>
    </parent>

2.引入starter依赖:

    <dependency>  
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

3.完整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.nwpu</groupId>
    <artifactId>HelloSpringBoot</artifactId>
    <version>1.0-SNAPSHOT</version>
    
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.6.RELEASE</version>
    </parent>
    
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值