本文介绍: Mybatis一个持久框架,用于简化数据库操作,和Spring 没有任何关系,我们现在能使用它是因为 Spring Boot 把Mybatis 的依赖引入进来了,在 pom.xml 里面。依旧是右键,generate ,test,勾选,OK。然后在Mysql查查看有没有插入成功。Mybatis 如何进行重命名?看最后两行代码,这样就能重命名了。Mybatis 的增操作

Mybatis 是一个持久框架,用于简化数据库操作,和Spring 没有任何关系,我们现在能使用它是因为 Spring Boot 把Mybatis 的依赖给引入进来了,在 pom.xml 里面

Mybatis 如何进行重命名?

最后两行代码,这样就能重命名

package com.example.mybatisdemo.mapper;

import com.example.mybatisdemo.model.UserInfo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface UserInfoMapper {
    @Select("select * from userInfo")
    List<UserInfo> selectAll();

    @Select("select * from userInfo where id = #{id}")
    UserInfo selectOne(Integer id);

    @Select("select * from userInfo where id= #{userId}")
    UserInfo selectOne2(@Param("userId")Integer id);
}

 Mybatis 的增操作

package com.example.mybatisdemo.mapper;

import com.example.mybatisdemo.model.UserInfo;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface UserInfoMapper {
    

    @Insert(" insert into userinfo(username,password,age,gender,phone) " +
            "value(#{username},#{password},#{age},#{gender},#{phone})")
    Integer insert(UserInfo userInfo);

}

依旧是右键,generate ,test,勾选,OK

package com.example.mybatisdemo.mapper;

import com.example.mybatisdemo.model.UserInfo;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

import java.util.List;

import static org.junit.jupiter.api.Assertions.*;

@Slf4j
@SpringBootTest
class UserInfoMapperTest {
    @Autowired
    private UserInfoMapper userInfoMapper;
    

    @Test
    void insert() {
        UserInfo userInfo = new UserInfo();
        userInfo.setUsername("zhaoliu");
        userInfo.setPassword("123");
        userInfo.setAge(45);
        userInfo.setGender(0);
        userInfo.setPhone("1775423");

        Integer result = userInfoMapper.insert(userInfo);
        log.info("insert 方法,执行结果:{}",result);
    }
}

就能看到运行结果了 

然后在Mysql查查看有没有插入成功 

没毛病

原文地址:https://blog.csdn.net/qq_40841463/article/details/134760056

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_38350.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注