mybatis+springboot中使用mysql的实例

网友投稿 282 2022-12-25

mybatis+springboot中使用mysql的实例

目录依赖引入配置引入案例实现案例源码

在软件开发中,数据库的引入是必不可少的,其中又属mysql使用最为广泛,而在sprinYQgaBvhnBFgboot中,集成使用mysql的方式有很多(例如jpa),这里来展现一下通过mybatis框架在springboot中使用mysql。

依赖引入

首先在使用初始化工程的时候加入mybatis、mysql相关的依赖,如下所示:

org.springframework.boot

http:// spring-boot-starter

org.mybatis.spring.boot

mybatis-spring-boot-starter

2.0.1

mysql

mysql-connector-java

runtime

com.alibaba

druid

1.1.10

配置引入

在配置方面,使用springboot的自动配置功能配置数据源,如下所示:

spring:

datasource:

type: com.alibaba.druid.pool.DruidDataSource

url: jdbc:mysql://127.0.0.1:3306/sbac_master?autoReconnect=true&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true

username: root

password: 1234

driver-class-name: com.mysql.cj.jdbc.Driver

配置了数据源,剩下的就是引入mybatis了。mybatis的引入同样可以使用自动配置(MybatisProperties)来实现,这里选择不全部使用自动配置属性,而是引入mybatis的配置文件方式注入属性。

mybatis:

config-location: classpath:mybatis-config.xml

mapper-locations: classpath:com/lazycece/sbac/mysql/data/dao/*/mapper/*.xml

这里给出一个mybatis的简单配置,有关更多的配置属性,可以参考mybatis的XML配置。

PUBLIC "-//mybatis.org//DTD Config 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-config.dtd">

javaType="com.lazycece.sbac.mysql.data.domain.Status"/>

案例实现

这里给出一个简单的案例(用户信息的插入和查询)来展现mapper层的实现,实体就不在这里展示了。mapper接口如下:

@Mapper

public interface UserDao {

void insert(User user);

User findByUsername(@Param("username") String username);

}

同时需要在主函数上加入注解@MapperScan来扫描我们mapper:

@SpringBootApplication

@MapperScan(basePackages = {"com.lazycece.sbac.mysql.data.dao"})

public class SpringbootAcMysqlSimpleApplication {

public static void main(String[] args) {

SpringApplication.run(SpringbootAcMysqlSimpleApplication.class, args);

}

}

mapper的sql实现,这里选择用xml的方式实现,当然也可以选择用注解方式(这里对应的@Select,@Insert):

PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

id,create_time,update_time,username,password,telephone,status,editor

INSERT INTO

user (create_time,update_time,username,password,telephone,status,editor)

VALUE (#{createTime},#{updateTime},#{username},#{password},#{telephone},#{status},#{editor});

SELECT

FROM user

WHERE username = #{username};

细心者可发现,前面配置引入中引入mapper是写的classpath:com/lazycece/sbac/mysql/data/dao//mapper/.xml包名路径,使用这种方式默认情况下是不会成功的,因为包路径下文件默认只会编译java文件,所以需要在pom文件中加入配置使得在工程编译时将其包含进编译后的路径下。

src/main/java

com/lazycece/sbac/mysql/data/dao/*/mapper/*.xml

案例源码

案例源码地址:YQgaBvhnBF https://github.com/lazycece/springboot-actual-combat/tree/master/springboot-ac-mysql/springboot-ac-mysql-simple

javaType="com.lazycece.sbac.mysql.data.domain.Status"/>

案例实现

这里给出一个简单的案例(用户信息的插入和查询)来展现mapper层的实现,实体就不在这里展示了。mapper接口如下:

@Mapper

public interface UserDao {

void insert(User user);

User findByUsername(@Param("username") String username);

}

同时需要在主函数上加入注解@MapperScan来扫描我们mapper:

@SpringBootApplication

@MapperScan(basePackages = {"com.lazycece.sbac.mysql.data.dao"})

public class SpringbootAcMysqlSimpleApplication {

public static void main(String[] args) {

SpringApplication.run(SpringbootAcMysqlSimpleApplication.class, args);

}

}

mapper的sql实现,这里选择用xml的方式实现,当然也可以选择用注解方式(这里对应的@Select,@Insert):

PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

id,create_time,update_time,username,password,telephone,status,editor

INSERT INTO

user (create_time,update_time,username,password,telephone,status,editor)

VALUE (#{createTime},#{updateTime},#{username},#{password},#{telephone},#{status},#{editor});

SELECT

FROM user

WHERE username = #{username};

细心者可发现,前面配置引入中引入mapper是写的classpath:com/lazycece/sbac/mysql/data/dao//mapper/.xml包名路径,使用这种方式默认情况下是不会成功的,因为包路径下文件默认只会编译java文件,所以需要在pom文件中加入配置使得在工程编译时将其包含进编译后的路径下。

src/main/java

com/lazycece/sbac/mysql/data/dao/*/mapper/*.xml

案例源码

案例源码地址:YQgaBvhnBF https://github.com/lazycece/springboot-actual-combat/tree/master/springboot-ac-mysql/springboot-ac-mysql-simple

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java实现滑块拼图验证码
下一篇:抓取网站api接口信息(api网站采集)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~