当前位置:网站首页>关于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内容可能会缺少相应的包依赖,所以提供大家一个参考,需要用到模板引擎的自行添加。
边栏推荐
猜你喜欢
Binary tree related code questions [more complete] C language
LeetCode刷题第17天之《3 无重复字符的最长子串》
"3 Longest Substring Without Repeating Characters" on the 17th day of LeetCode brushing
电力机柜数据监测RTU
【组成原理 九 CPU】
How to learn machine learning?machine learning process
【力扣】22.括号生成
Where can machine learning be applied?What is machine learning useful for?
Provincial level of Echart maps, as well as all prefecture-level download and use
【FPGA】设计思路——I2C协议
随机推荐
【FPGA】day18-ds18b20实现温度采集
多串口RS485工业网关BL110
【FPGA】day20-I2C读写EEPROM
什么是机器强化学习?原理是什么?
Leetcode 669. 修剪二叉搜索树
机器学习是什么?详解机器学习概念
Rotary array problem: how to realize the array "overall reverse, internal orderly"?"Three-step conversion method" wonderful array
【FPGA】abbreviation
Echart地图的省级,以及所有地市级下载与使用
"239 Sliding Window Maximum Value" on the 16th day of LeetCode brushing
洛谷P6586 蒟蒻火锅的盛宴
Watch to monitor
洛谷P7441 Erinnerung
map和set--天然的搜索和查找语义
Description of ESB product development steps under cloud platform
【C语言】入门
"125 Palindrome Verification" of the 10th day string series of LeetCode brushing questions
获取Qt的安装信息:包括安装目录及各种宏地址
Multi-serial port RS485 industrial gateway BL110
LeetCode814 Math Question Day 15 Binary Tree Series Value "814 Binary Tree Pruning"