【springboot】创建一个前端渲染数据可调用的接口(前端分离必备)

本文详细介绍了如何在Springboot项目中集成Mybatis,包括创建entity实体类、mapper接口及其实现、controller层接口调用,展示了User和Word两个数据表的示例,实现了数据的查询展示。通过这个教程,读者可以了解到Springboot与Mybatis结合的基本步骤。
摘要由CSDN通过智能技术生成

Springboot集成Mybatis创建接口

主程序【SpringBootApplication.java】

package com.example.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringbootApplication {

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

}

一、entity文件夹下存放数据库内对应的数据表文件

在与主程序同级目录下建一个entity文件,用于存放和数据库内数据表对应的文件目录
在这里插入图片描述
在这里插入图片描述

User.java

package com.example.springboot_vue.entity;

import lombok.Data;

@Data
public class User {
    private Integer id;
    private String username;
    private String password;
    private String nickname;
    private String email;
    private String phone;
    private String address;

}

Word.java

package com.example.springboot_vue.entity;

import lombok.Data;

@Data
public class Word {
    private Integer id;
    private String word;
    private String mean;
}

在这里插入图片描述

在这里插入图片描述

二、mapper文件夹下存放与entity中类文件对应的接口

在与主程序同级目录下建一个mapper文件,用于存放与entity中类文件对应的接口
在这里插入图片描述

UserMapper.java

package com.example.springboot_vue.entity;

import com.qingge.springboot.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface UserMapper {

    @Select("SELECT * from sys_user")
    List<User> findAll();

}

WordMapper.java

package com.example.springboot_vue.mapper;

import com.example.springboot_vue.entity.Word;
import org.apache.ibatis.annotations.Select;

import java.util.List;

public interface WordMapper {
    @Select("SELECT * from sys_word")
    List<Word> findAll();
}

在这里插入图片描述

三、controller层

controller控制层
在这里插入图片描述

UserController.java

package com.example.springboot_vue.mapper;

import com.qingge.springboot.entity.User;
import com.qingge.springboot.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
public class UserController {


    @Autowired
    private UserMapper userMapper;

    @GetMapping("/")
    public List<User> index() {
        List<User> all = userMapper.findAll();
        return all;
    }
}

WordController.java

package com.example.springboot_vue.controller;

import com.example.springboot_vue.entity.Word;
import com.example.springboot_vue.mapper.WordMapper;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;
import java.util.List;

@RestController
@RequestMapping("/word")
public class WordController {

    @Resource
    WordMapper wordMapper;

    @GetMapping
    public List<Word> getWord(){
        return wordMapper.findAll();
    }
}

四、启动输出

启动项目

在这里插入图片描述

浏览器输出

在这里插入图片描述
在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值