当前位置:网站首页>关于pom.xml文件
关于pom.xml文件
2022-08-11 04:07:00 【iiYcyk】
提供一下关于pom.xml配置文件
以下pom.xml配置文件内容作为参考
这是我做项目时常用的依赖,进行了提取出来大致需要用的的一些常用包的依赖
<?xml version="1.0" encoding="UTF-8"?>
4.0.0
<groupId>com.yqx</groupId>
<artifactId>gameteam</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>gameteam</name>
<description>gameteam</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- servlet依赖. -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<!-- tomcat的支持. -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.36</version>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>
<!-- springboot jdbc -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<!-- 引入thymeleaf依赖包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
题外
我看到很多人学习的时候pom.xml整合ssm以及springboot内容可能会缺少相应的包依赖,所以提供大家一个参考,需要用到模板引擎的自行添加。
边栏推荐
- 华南师范宋宇老师课堂对话论文翻译
- Where can machine learning be applied?What is machine learning useful for?
- 洛谷P7441 Erinnerung
- 【FPGA】day22-SPI协议回环
- Differences and connections between distributed and clustered
- map和set--天然的搜索和查找语义
- UNI-APP_iphone bottom safe area
- 这些云自动化测试工具值得拥有
- Qnet Weak Network Test Tool Operation Guide
- Read the article, high-performance and predictable data center network
猜你喜欢
How to learn machine learning?machine learning process
电力机柜数据监测RTU
What is machine learning?Explain machine learning concepts in detail
LeetCode刷题第11天字符串系列之《 58最后一个单词长度》
"98 BST and Its Verification" of the 13th day of leetcode brushing series of binary tree series
WPF DataGrid 使用数据模板(2)
"104 Maximum Depth of Binary Trees" in LeetCode's Day 12 Binary Tree Series
Day20 FPGA 】 【 - block the I2C read and write EEPROM
【FPGA】day22-SPI协议回环
Graphical LeetCode - 640. Solving Equations (Difficulty: Moderate)
随机推荐
我的 archinstall 使用手册
洛谷P1763 埃及分数
Will oracle cardinality affect query speed?
Clang Code Model: Error: The clangbackend executable “X:/clangbackend.exe“ could not be started
每日一题-滑动窗口
Introduction to c # a week of high-level programming c # - LINQ Day Four
"125 Palindrome Verification" of the 10th day string series of LeetCode brushing questions
Get Qt installation information: including installation directory and various macro addresses
华南师范宋宇老师课堂对话论文翻译
Power Cabinet Data Monitoring RTU
Qnet Weak Network Test Tool Operation Guide
.NET自定义中间件
Graphical LeetCode - 640. Solving Equations (Difficulty: Moderate)
App基本框架搭建丨日志管理 - KLog
Alibaba Cloud releases 3 high-performance computing solutions
洛谷P2580 于是他错误的点名开始了
"104 Maximum Depth of Binary Trees" in LeetCode's Day 12 Binary Tree Series
LeetCode刷题第17天之《3 无重复字符的最长子串》
常见布局效果实现方案
LeetCode814算题第15天二叉树系列值《814 二叉树剪枝》