接口接口开发+SpringBoot

Posted xiaozhaoboke

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接口接口开发+SpringBoot相关的知识,希望对你有一定的参考价值。

一、接口的简单介绍

1.什么是接口:接口及服务;

2.接口的分类:(1)系统的内部接口;(2)第三方的外部接口;

3.简述接口原理图:

技术图片

4.接口协议:是指客户端跟服务器之间或者接口与接口间进行的通讯时必须要遵从的约定和要求;

   互联网上 应用最为广泛的一种网络协议--http协议(超文本传输协议),因此最常见的就是http协议的接口.(webservice接口,dubbo接口等都是基于http协议)

5.http协议的组成

请求:
1.url统一资源定位符(接口地址)
2.请求方式(get,post,put,delete)
3.请求参数
4.请求格式
5.请求头:携带服务器关于客户端的一些信息
6.协议版本
响应:
1.响应的状态码
2.响应头:携带客关于服务器的一些信息给客户端
3.响应报文

6.接口的本质

  (1) 接口就是服务,功能的实现,本质就是基于某协议下实现的一个函数,例如登录界面请求xxx/login.html地址的时候,通过路径
   映射,请求到login()函数进行处理.
  (2) 接口的传参对应了函数的参数(接口测试参数--函数参数),接口的响应报文对应了函数定义的返回值(接口响应报文--函数的返回值)

二、引入微服务架构Spring Boot,我们只需要导入我们本次需求需要的依赖包即可!

技术图片

技术图片

技术图片

 <!-- 引入springboot默认提供的一套依赖 -->
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.1.RELEASE</version>
</parent>
<dependencies>
    <!-- 提供了web模块的依赖  -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <version>2.1.1.RELEASE</version>
    </dependency>
    <!-- 热部署  -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>provided</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.13</version>
    </dependency>
</dependencies>

导入mysql依赖:

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

 三、代码实现简单接口功能如下:

1.get请求:http://IP:端口/user/login?username=xxx&password=123456
2.数据库验证,请求参数是否存在:username=xxx&password=123456,如果不存在提示检查信息,如果存在登录成功
2.json格式响应数据:"status":"1","message":"登录成功"

1.新建Application类,SpringBoot入口程序

package cn.bing.starter;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

/**Spring boot 入口启动程序,sprint boot内置了tomcat
 * @author Administrator
 */
@ComponentScan(basePackages= "cn.bing.api")//扫描组件
@SpringBootApplication//定义sprintboot入口程序
public class Application 
    public static void main(String[] args) 
        SpringApplication.run(Application.class,args);
    

2.实现SQL数据库查询工具类

(1)请根据自己实现情况,配置连接数据库参数jdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/my_test?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
jdbc.username=sql-name
jdbc.password=sql-password

(2)实现SQlUtil工具类

package cn.bing.util;

import java.io.File;
import java.io.FileInputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Properties;

import cn.bing.pojo.User;

public class SQLUtil 
    
    /**传入user进入数据库查询是否存在,返回大于1存在,返回0则不存在
     * @param user
     */
    public static int findSQL(User user) 
        //根据SQL查询结果为数量num,假设没有查到为0
        int num =0;
        //取出需要查询的数据username和password
        String username = user.getUsername();
        String password = user.getPassword();
        //加载properties文件获取连接SQL数据库的参数
        Properties properties = new Properties();
        try 
            properties.load(new FileInputStream(new File("src/test/resources/jdbc.properties")));
         catch (Exception e) 
            e.printStackTrace();
         
        String url = properties.getProperty("jdbc.url");
        String sqlLoginName = properties.getProperty("jdbc.username");
        String sqlLoginPwd = properties.getProperty("jdbc.password");
        String sql ="select count(*) as number from user_test where name=‘"+username+"‘"+"and password=‘"+password+"‘";
        Connection connection =null;
        try 
            //1.创建连接
            connection = DriverManager.getConnection(url,sqlLoginName,sqlLoginPwd);
            //2.获得一个statement对象,将要执行的sql脚本封装到此对象中
            PreparedStatement statement =connection.prepareStatement(sql);
            ResultSet ResultSet = statement.executeQuery();
            while(ResultSet.next()) 
                num =ResultSet.getInt("number");
            
        
         catch (SQLException e) 
            e.printStackTrace();
        finally 
            try 
                connection.close();//关闭连接
             catch (SQLException e) 
                e.printStackTrace();
            
        
        return num;
    

3.新建user对象

package cn.bing.pojo;

public class User 
    private String username;
    private String password;
    public String getUsername() 
        return username;
    
    public void setUsername(String username) 
        this.username = username;
    
    public String getPassword() 
        return password;
    
    public void setPassword(String password) 
        this.password = password;
    
    public User(String username, String password) 
        super();
        this.username = username;
        this.password = password;
    
    public User() 
        super();
        

4.新建Result对象,响应时=>序列化为json格式返回

package cn.bing.pojo;
public class Result 
    //接口返回状态标志:1:代表接口正常处理,返回成功; 0:代表处理异常,返回失败
    private String status;
    private String message;
    public String getStatus() 
        return status;
    
    public void setStatus(String status) 
        this.status = status;
    
    public String getMessage() 
        return message;
    
    public void setMessage(String message) 
        this.message = message;
    
    public Result(String status, String message) 
        super();
        this.status = status;
        this.message = message;
    
    public Result() 
        super();
    
    @Override
    public String toString() 
        return "Result [status=" + status + ", message=" + message + "]";
      

5.中央控制器的实现类

package cn.bing.api;

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

import cn.bing.pojo.Result;
import cn.bing.pojo.User;
import cn.bing.util.SQLUtil;

/**controller:控制器(实现请求分发,一般会在控制器当中定义接口)
 * @author Administrator
 *
 */
@RestController//控制器类
@RequestMapping("/user")//映射路径
public class UserController 
    //登录接口 http://ip:端口/user/login
    @RequestMapping(value="/login")
    public Result login(User user) 
        String username = user.getUsername();
        String password = user.getPassword();
        //1.用户名为空提示"用户名不能为空"
        if(username==null || username.trim().length()==0) 
            return new Result("0","用户名不能为空");
        
        //2.密码为空,提示"密码不能为空"
        if(password==null || password.trim().length()==0) 
            return new Result("0","密码不能为空");
        
        //3.用户名密码不为空的情况下jdbc完成数据库查询验证
        if(username != null && password!=null) 
            int num = SQLUtil.findSQL(user);
            System.out.println("-------------------------"+num+"--------------------------------");
            if(num>0) 
                return new Result("1", "登录成功");
            
        
        return new Result("0","请核对账密信息!");      
    

四.运行Application类,启动SpringBoot程序,访问接口结果如下:

技术图片

技术图片

技术图片

技术图片

补充:数据库保存用户名及密码截图

技术图片

五、未完待优化。。。。。

 

以上是关于接口接口开发+SpringBoot的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 接口快速开发神器(接口可视化界面实现)

SpringBoot 接口快速开发神器(接口可视化界面实现)

推荐一款基于 SpringBoot 的接口快速开发框架

SpringBoot系列之集成Scala开发API接口

springboot集成webservice接口

SpringBoot------查看项目开发的接口