二 SpringBoot入门案例

目录

 

二 SpringBoot入门案例

第一步:

第二步:

第三步:

第四步:

第五步:

第六步:

第七步:

第八步:


二 SpringBoot入门案例

第一步:

解压一个maven3.5到本地

第二步:

修改maven的conf\setting的本地仓库存储路径

第三步:

修改maven的conf\setting 中远程仓库为阿里云的

第四步:

把Eclipse中的本地和全局的仓库文件都改成conf\setting

第五步:

使用Eclipse创建一个 maven war项目(test1)

使用Eclipse创建一个 maven jar项目(test2)

这两种都可以,但一般都使用jar,因为spring是用于服务,不建议与jsp使用

第六步:

在pom.xml添加spring-boot-starter-web依赖,如图

<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>1.5.9.RELEASE</version>

</parent>

<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

</dependencies>

spring-boot-starter-parent作用

在pom.xml中引入spring-boot-start-parent,它可以提供dependency management,也就是说依赖管理,引入以后在申明其它dependency的时候就不需要version了,后面可以看到。

 

spring-boot-starter-web作用

springweb 核心组件

第七步:

写一个控制器如下,然后写一个main方法,把程序跑起来:

package com.gyf.web.controller;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;

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

import org.springframework.web.bind.annotation.ResponseBody;

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

 

@RestController//相当于声明Controller - 提共restful 风格

@EnableAutoConfiguration//自动配置,不需要写spring的配置文件

class HelloController {

 

@RequestMapping("/hello")//映射路径

@ResponseBody//响应体

public String hello() {

return "Hello World";

}

 

public static void main(String[] args) {

//启动程序

SpringApplication.run(HelloController.class, args);

}

}

第八步:

在浏览器中访问http://localhost:8080/hello

注:Maven项目上总有一个小红叉

解决决思路:

1、查看problems选项卡,里面有对问题的描述

2、工程右键->maven->update project(勾选Force Update)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值