Spring Boot入门

SpringBoot入门

1. SpringBoot简介

spring boot是一种全新的Java web框架,目的是简化Spring应用的初始搭建和开发过程,让开发者写更少的配置,程序更快的启动和运行,致力于成为快速开发应用领域的领导者。

从它的名字也可以看出,更像是一个引导程序,就跟我们傻瓜式的安装电脑软件一样,next,next...很快我们就可以搭建起一个Spring应用。

2. Spring产生背景

在使用Spring和Spring MVC框架的时候,我们需要手动配置很多东西,我们更希望的是“约定大于配置”,就是说系统、类库、框架应该假定合理的默认值,而非要求提供不必要的配置,使用Spring和Spring MVC进行很多配置,不仅增加了工作量,而且在跨平台部署的时候容易出现问题。由于这些问题的存在,Spring Boot应运而生,使用Spring Boot我们可以很快的创建一个基于Spring的项目,让这个Spring项目跑起来只需要很少的配置就可以了。

3. Spring Boot的优缺点

Spring Boot可以独立运行Spring项目,它可以以jar包的形式来运行,java -jar xxx.jar就可以运行,很方便。并且可以内嵌Tomcat,这样我们无需以war包的形式部署项目。Spring Boot通过starter能够帮助我们简化maven配置。总的来说,Spring Boot大致有以下优缺点。

优点:

  1. Spring Boot使编码变简单;
  2. Spring Boot使配置变简单;
  3. Spring Boot使部署变简单;
  4. Spring Boot使监控变简单;

缺点:

  1. 缺少注册、服务发现等外围方案;
  2. 缺少外围监控集成方案;
  3. 缺少外围安全管理方案;
  4. 缺少REST落地的URI规划方案;
  5. 比较适合做微服务,不太适合比较大型的项目;
  6. 集成度较高,使用过程中不太容易了解底层。

Spring Boot只是微服务框架的起点,配合Spring Cloud可以快速搭建微服务。

4. 搭建一个简单的Spring Boot工程

  1. 新建一个maven工程;

  2. 在pom文件中添加spring boot的依赖:

    <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>2.0.2.RELEASE</version>
    </parent>
    ...
    <dependencies>
      ...
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
      </dependency>
    </dependencies>
    
  3. 在App.java中编写服务,这是是程序的入口,通过简单的注释就可以发布一个服务。

    package com.wangjun.spring.springboottest;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.ResponseBody;
    
    @Controller
    @EnableAutoConfiguration
    public class App {
     @RequestMapping("/")
     @ResponseBody
     String home() {
         return "Hello World!";
     }
     
     @RequestMapping("/name")
     @ResponseBody
     String getName() {
         return "spring boot test";
     }
    
     public static void main(String[] args) {
         SpringApplication.run(App.class, args);
     }
    }
    
  4. 然后点击运行,可以在控制台看到输出了Spring Boot字样:

    
         .   ____          _            __ _ _
        /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
       ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
        \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
         '  |____| .__|_| |_|_| |_\__, | / / / /
        =========|_|==============|___/=/_/_/_/
        :: Spring Boot ::        (v2.0.2.RELEASE)
    

    运行成功后会显示:

    Tomcat started on port(s): 8080 (http) with context path
    

  5. 在浏览器打开localhost:8080,可以看到页面返回Hello World! 打开localhost:8080/name,可以看到页面返回spring boot test。

OK。就是这么简单!spring boot内置了servlet容器,所以不需要想传统方式那样,先部署到容器再启动容器,只需要运行main函数即可。

配置yml文件:在Java的路径下新建resources文件夹,里面新建application.yml文件,在eclipse中将recourse文件夹设置为Source Folder。

在yml里面写一点配置:

server:
 port: 8030

你还需要在pom文件中添加依赖:

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

因为spring-boot-starter会自动加载yml文件(application.yml)

接下来重新启动,访问端口就变成了8030。

5. 使用jpa操作数据库

在pom中添加依赖:

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

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

在appilication.yml中添加数据库配置:

spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT
    username: root
    password: password
  jpa:
    hibernate:
      ddl-auto: create #create 代表在数据库创建表,update 代表更新
    show-sql: true

创建一个实体:

package com.wangjun.spring.springboottest;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;


@Entity
public class User {
    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)  //和表的id生成策略相同
    //id要使用javax.persistence下面的,必然会报错No identifier specified for entity
    private Integer id; 
    private String name;
    private Integer age;
    
    public User() {
        
    }
    
    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
    
}

创建Dao接口, springboot 将接口类会自动注解到spring容器中,不需要我吗做任何配置,只需要继承JpaRepository 即可:

package com.wangjun.spring.springboottest;

import org.springframework.data.jpa.repository.JpaRepository;

public interface UserRep extends JpaRepository<User, Integer>{
    
}

创建User的controller类,添加查询和添加的方法:

package com.wangjun.spring.springboottest;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@EnableAutoConfiguration
public class UserController {
    
    @Autowired
    private UserRep userRep;
    
    @RequestMapping("/users")
    @ResponseBody
    public List<User> getUserList(){
        return userRep.findAll();
    }
    
    @RequestMapping("/adduser")
    @ResponseBody
    public User addUser(@RequestParam("name") String name, @RequestParam("age") Integer age) {
        User user = new User();
        user.setName(name);
        user.setAge(age);
        return userRep.save(user);
    }
    
}

主方法中改为:

package com.wangjun.spring.springboottest;

import org.springframework.boot.SpringApplication;


public class App {

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

运行程序,通过get方式访问

http://localhost:8030/users
http://localhost:8030/adduser?name="nike"&age=25

就可以查询或者删除数据了。

如过想用post请求,只需要在注解中将method的值改为POST:

@RequestMapping(value = "/adduser", method = RequestMethod.POST)
@ResponseBody
public User addUser(@RequestParam("name") String name, @RequestParam("age") Integer age) {
  User user = new User();
  user.setName(name);
  user.setAge(age);
  return userRep.save(user);
}

重新启动服务,然后可以在postman中,重新模拟发送post请求。

6. 遇到的问题

1. spring boot发布的post服务报400错误

使用postman发送请求时,使用raw,里面直接写json:

{"name":"name", "age":22}

报错:400 Bad Request。

使用form-data和x-www-form-urlencoded形式发送数据可以正常返回。

解决方案:

addUser(@RequestParam("name") String name, @RequestParam("age") Integer age)

这种形式定义的方法只能接受表单形式的数据,如果要想接收json数据,可以将其改为:

@RequestMapping(value = "/adduser", method = RequestMethod.POST)
@ResponseBody
public User addUser(@RequestBody User user) {
  return userRep.save(user);
}

2. 启动时报错:No identifier specified for entity

错误日志:

Caused by: org.hibernate.AnnotationException: No identifier specified for entity: com.wangjun.spring.springboottest.User

解决方案:

在网上搜了一波,原来是在实体类中导入的Id类的包不对,之前导入的是:

import org.springframework.data.annotation.Id;

应该是:

import javax.persistence.Id;

3. 每次重启项目,数据库数据会被清空

解决方案:

在application.yml文件中,修改

ddl-auto: update #create 代表在数据库创建表,update 代表更新

参考:

https://blog.csdn.net/fly_zhyu/article/details/76407830

https://www.zhihu.com/question/39483566

https://blog.csdn.net/u012702547/article/details/53740047

https://blog.csdn.net/forezp/article/details/61472783

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342

推荐阅读更多精彩内容