登录
首页 >  数据库 >  MySQL

java版spring cloud+spring boot多租户社交电子商务-springboot整合mybatis

来源:SegmentFault

时间:2023-01-10 12:19:53 458浏览 收藏

本篇文章主要是结合我之前面试的各种经历和实战开发中遇到的问题解决经验整理的,希望这篇《java版spring cloud+spring boot多租户社交电子商务-springboot整合mybatis》对你有很大帮助!欢迎收藏,分享给更多的需要的朋友学习~

引入依赖
在pom文件引入mybatis-spring-boot-starter的依赖:

org.mybatis.spring.bootmybatis-spring-boot-starter1.3.0

引入数据库连接依赖:

mysqlmysql-connector-javaruntimecom.alibabadruid1.0.29

引入数据源
application.properties配置文件中引入数据源:

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

这样,springboot就可以访问数据了。

创建数据库表
建表语句:

-- create table `account`
# DROP TABLE `account` IF EXISTS
CREATE TABLE `account` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `money` double DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
INSERT INTO `account` VALUES ('1', 'aaa', '1000');
INSERT INTO `account` VALUES ('2', 'bbb', '1000');
INSERT INTO `account` VALUES ('3', 'ccc', '1000');

具体实现
这篇文篇通过注解的形式实现。

创建实体:

public class Account { 
private int id ; 
private String name ; 
private double money;

setter… 
getter… 
}

dao层

@Mapper
public interface AccountMapper {
 
    @Insert("insert into account(name, money) values(#{name}, #{money})")
    int add(@Param("name") String name, @Param("money") double money);
 
    @Update("update account set name = #{name}, money = #{money} where id = #{id}")
    int update(@Param("name") String name, @Param("money") double money, @Param("id") int  id);
 
    @Delete("delete from account where id = #{id}")
    int delete(int id);
 
    @Select("select id, name as name, money as money from account where id = #{id}")
    Account findAccount(@Param("id") int id);
 
    @Select("select id, name as name, money as money from account")
    List findAccountList();
}

service层

@Service
public class AccountService {
    @Autowired
    private AccountMapper accountMapper;
 
    public int add(String name, double money) {
        return accountMapper.add(name, money);
    }
    public int update(String name, double money, int id) {
        return accountMapper.update(name, money, id);
    }
    public int delete(int id) {
        return accountMapper.delete(id);
    }
    public Account findAccount(int id) {
        return accountMapper.findAccount(id);
    }
    public List findAccountList() {
        return accountMapper.findAccountList();
    }
}

电子商务社交平台源码请加企鹅求求:一零三八七七四六二六

理论要掌握,实操不能落!以上关于《java版spring cloud+spring boot多租户社交电子商务-springboot整合mybatis》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表