快速构建RESTful应用

导读:本篇文章讲解 快速构建RESTful应用,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

🎈博客主页:🌈我的主页🌈
🎈欢迎点赞 👍 收藏 🌟留言 📝 欢迎讨论!👏
🎈本文由 【泠青沼~】 原创,首发于 CSDN🚩🚩🚩
🎈由于博主是在学小白一枚,难免会有错误,有任何问题欢迎评论区留言指出,感激不尽!🌠个人主页



🌟 一、RESTFUL

RESTFUL是一种网络应用程序的设计风格和开发方式,基于HTTP,可以使用XML格式定义或JSON格式定义。RESTFUL适用于移动互联网厂商作为业务接口的场景,实现第三方OTT调用移动网络资源的功能,动作类型为新增、变更、删除所调用资源

🌟 二、项目配置文件

🌟🌟 2.1、POM.XML

		//SpringDataJPA依赖
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        //restful依赖
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-rest</artifactId>
        </dependency>
        //SpringWeb依赖
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
		//Mysql驱动
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>

🌟🌟 2.2、application.properties

//数据库配置mysql
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.url=jdbc:mysql://localhost:3306/user?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=UTF-8
//JPA配置
spring.jpa.database=mysql
spring.jpa.database-platform=mysql
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL57Dialect

🌟 三、实体类

@Entity(name = "user")
public class User {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int id;
    private String username;
    private String password;
    GetSet方法省略...
}

🌟 四、持久层

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

不需要编写任何有关数据的操作,遵守restful规范的请求会自动被执行,去查询数据库

🌟 五、测试结果

  • GET 根据id查询用户(users是实体类名小写加s)

http://localhost:8080/users/2
在这里插入图片描述

  • GET 分页查询所有用户
    http://localhost:8080/users
    在这里插入图片描述
    在这里插入图片描述
  • GET 分页查询用户指定当前页和每页的记录数
    http://localhost:8080/users?page=0&size=1
    在这里插入图片描述
  • GET 分页查询用户指定当前页和每页的记录数并且按照id排序(倒序)
    http://localhost:8080/users?page=0&size=1&sort=id,desc
    在这里插入图片描述
  • POST 修改更新用户数据(在请求体中写上JSON格式的更新内容)
    http://localhost:8080/users
    {“username”:“lqz1”,“password”:“root1”}
    在这里插入图片描述
  • PUT 添加一条数据指定id(在请求体中写上JSON格式的添加内容)
    http://localhost:8080/users/4
    {“username”:“lqz123”,“password”:“root1”}
    在这里插入图片描述
  • DELETE 根据id删除用户(没有响应体)
    http://localhost:8080/users/4
    在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/15739.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!