今天就跟大家聊聊有关在SpringBoot中使用MyBatis如何实现一个应用访问功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
一,Pom文件
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>example</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> //这里设置为jar,因为我们会使用jar包部署运行 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.2.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> //Mybatis的jar包 <version>1.1.1</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> //json数据格式和对象的转换jar包 <version>1.9.8</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>com.h3database</groupId> //内嵌数据库 <artifactId>h3</artifactId> <version>1.3.156</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> //lombok插件,方便model对象的处理 <version>1.16.2</version> </dependency> <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> //mysql驱动 <version>5.1.18</version> </dependency> </dependencies> <build> <finalName>example</finalName> //打包后的jar包名称 <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> //必须要的SpringBoot继承的maven插件,缺少了无法打包jar。 <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> //因为jar包中可能存在很多其他的配置资源,例如mapper文件所以打包为jar包需要将其加入,所以需要此资源打包插件 <version>2.5</version> <executions> <execution> <id>copy-xmls</id> <phase>process-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/classes</outputDirectory> <resources> <resource> <directory>${basedir}/src/main/java</directory> <includes> <include>***.properties</include> <include>***.tld</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/java</directory> <includes> <include>***.xml</include> <include>**/*.tld</include> </includes> <filtering>false</filtering> </resource> </resources> </build> <repositories>//设置仓库 <repository> <id>spring-milestone</id> <url>http://repo.spring.io/libs-release</url> </repository> </repositories></project>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机在SpringBoot中使用MyBatis如何实现一个应用访问功能
后端开发2023-05-31
如何在Android应用中实现一个侧滑功能
后端开发2023-05-31
如何在Android应用中实现一个返回键功能
后端开发2023-05-31
如何在springboot中利用Quartz实现一个定时任务功能
后端开发2023-05-31
如何在Android应用中利用ListView实现一个分页功能
后端开发2023-05-31
如何在Android应用中利用SDK实现一个地图功能
后端开发2023-05-31
使用SpringBoot 如何实现一个MySQL 读写分离功能
后端开发2023-06-06
如何在Android应用中实现一个图片添加功能
后端开发2023-05-31
如何在Golang中使用WebSocket实现一个通信功能
后端开发2023-06-06
如何在Android应用中实现一个记住密码功能
后端开发2023-05-31
如何在Android应用中实现一个手势密码功能
后端开发2023-05-31
如何在android应用中利用service实现一个计时器功能
后端开发2023-05-31
利用mybatis如何实现一个一对多查询功能
后端开发2023-05-31
在springboot中使用mybatis如何实现多数据源
后端开发2023-05-31
如何MyBatis在使用MyCat实现多租户功能
后端开发2023-05-31
如何在Android应用中实现一个二维码生成功能
后端开发2023-05-31
咦!没有更多了?去看看其它编程学习网 内容吧