maven非web專案整合mbatis實現CRUD
在程式設計開發中,一般提起maven、mybatis這些,我們首先想到的就是javaweb的技術棧,比如spring、springboot。但是今天給大家介紹一個用maven整合mybatis的非web專案完成資料庫CRUD。
1 在idea中新建maven專案
直接新建即可,建立好後的專案結構如下
在pom檔案新增依賴
<dependencies>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.21</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
同時為了防止打包後找不到靜態資源,在pom檔案中,新增build標籤
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
2 建立資料庫和pojo實體類
首先建立資料庫
create DATABASE mybatis;
USE mybatis;
create table user(
id int PRIMARY key not null,
name VARCHAR(30) ,
pwd VARCHAR(30)
) ENGINE=INNODB;
INSERT INTO `user`(`id`, `name`, `pwd`) VALUES (1, '卡卡羅特', '123456');
INSERT INTO `user`(`id`, `name`, `pwd`) VALUES (2, '阿笠博士', '12345');
INSERT INTO `user`(`id`, `name`, `pwd`) VALUES (3, '野原向日葵', '123');
INSERT INTO `user`(`id`, `name`, `pwd`) VALUES (4, '一拳超人', '12');
INSERT INTO `user`(`id`, `name`, `pwd`) VALUES (5, '庫裡林', '123321');
再建立包,在包下建立實體類,我這裡建立了一個User類。
package toutiao.pojo;
public class User {
int id;
String name; String pwd; public User() {
} public User(int id, String name, String pwd) {
this.id = id;
this.name = name;
this.pwd = pwd;
} public int getId() {
return id;
} public void setId(int id) {
this.id = id;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String getPwd() {
return pwd;
} public void setPwd(String pwd) {
this.pwd = pwd;
} @Override
public String toString() {
return "User{" +
"id=" + id +
", name='" + name + '\'' +
", pwd='" + pwd + '\'' +
'}';
}}
3 在resources資料夾下面建立mybatis-config.xml 配置檔案
在這裡設定資料庫連線屬性等。同時資料庫連線動態配置等可以在application.properties檔案中配置,在mybatis-config.xml中載入。
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=Asia/Shanghai&useUnicode=true&character=UTF8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</dataSource>
</environment>
</environments>
</configuration>
4 建立mybatisUtils工具類
在這個類中讀取 mybatis-config.xml 建立 sqlSession。
package learn.utils;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import java.io.IOException;
import java.io.InputStream;
public class MybatisUtils {
private static SqlSessionFactory sqlSessionFactor;
static {
try {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource); sqlSessionFactor = new SqlSessionFactoryBuilder().build(inputStream);
} catch (IOException e) {
e.printStackTrace(); } } public static SqlSession getSqlSession(){
return sqlSessionFactor.openSession();
}}
此時,專案的目錄結構如下
5 建立mapper介面檔案
package toutiao.mapper;
import toutiao.pojo.User;
import java.util.List;
public interface UserMapper {
public List<User> getUserList();
}
6 在resources資料夾下面,建立對應mapper介面檔案的xml檔案
檔案裡面的sql語句的id對應介面檔案的方法名(這裡以查詢為例)
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="toutiao.mapper.UserMapper">
<select id="getUserList" resultType="toutiao.pojo.User">
select * from mybatis.user; </select>
</mapper>
7 在mybatis-config.xml 裡面將6中建立的xml檔案添進去
因為是在resources中,所以mapper標籤的resource路徑直接就是從resources下面的資料夾開始
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=Asia/Shanghai&useUnicode=true&character=UTF8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="userMapper.xml"></mapper>
</mappers>
</configuration>
8 查詢結果
在test包裡面建立測試類
package learn.mapper;
import learn.pojo.User;
import learn.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.jupiter.api.Test;
import java.util.List;
public class UserMapperTest {
@Test
public void test(){
Sqlession sqlSession = MybatisUtils.getSqlSession(); UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
List<User> userList = userMapper.getUserList(); for(User user : userList){
System.out.println(user); } sqlSession.close(); }}
相關文章
- maven專案增加web.xmlMavenWebXML
- Maven建立Web應用程式專案MavenWeb
- 首次使用ideal構建maven專案webIdeaMavenWeb
- IDEA Maven Web專案的install和runIdeaMavenWeb
- maven+jetty+idea+jrebel 實現專案熱部署MavenJettyIdea熱部署
- SpringBoot整合Redis使用Restful風格實現CRUD功能Spring BootRedisREST
- maven 專案轉化成 gradle 專案實踐MavenGradle
- IDEA新建Maven Java Web專案-詳細教程IdeaMavenJavaWeb
- 如何建立+管理maven、匯入web專案、xmlMavenWebXML
- jenkins+gitlab+docker持續整合部署maven專案JenkinsGitlabDockerMaven
- Mybatis、maven專案中整合log4j (17)MyBatisMaven
- ssts-hospital-web-master專案實戰記錄三十三:專案遷移-核心模組實現(useDeviceDriver-非接讀卡器)WebASTdev
- 【Saas-export專案】--專案整合(實體類、整合mybatis、service)ExportMyBatis
- java web專案 使用elfinder 實現檔案管理器JavaWeb
- 現有專案中整合FlutterFlutter
- Maven 專案文件Maven
- Maven 專案模板Maven
- Spring Boot從入門到實戰:整合Web專案常用功能Spring BootWeb
- 建立一個SpringBoot專案,實現簡單的CRUD功能和分頁查詢Spring Boot
- Maven教程(Eclipse配置及maven專案)MavenEclipse
- 【Maven實戰技巧】「外掛使用專題」Maven-Archetype外掛建立自定義maven專案骨架Maven
- 為現有iOS專案整合FlutteriOSFlutter
- 實戰 | 使用maven 輕鬆重構專案Maven
- 使用PreparedStatement實現CRUD操作
- SpringBoot實現mongoDB的CRUDSpring BootMongoDB
- SSM整合之CRUD環境搭建整合SSM
- IDEA中Maven專案修改JSP後透過配置Tomcat實現立即生效IdeaMavenJSTomcat
- 07-SpringBoot+MyBatis+Spring 技術整合實現商品模組的CRUD操作Spring BootMyBatis
- 07#Web 實戰:實現 GitHub 個人主頁專案拖拽排序WebGithub排序
- 如何透過SK整合chatGPT實現DotNet專案工程化?ChatGPT
- React Native整合到現有的原生專案React Native
- 專案中如何整合 kkFileView,實現幾乎任意格式檔案的預覽View
- Maven專案打jar包MavenJAR
- 建立Maven專案出錯Maven
- Maven 構建 Java 專案MavenJava
- Java Maven專案推送到 Maven 中央倉庫JavaMaven
- Vue+Element UI實現CRUDVueUI
- Vue+Ant Design實現CRUDVue