升级mybatis到最新版3.5.6 阻止远程代码执行漏洞
This commit is contained in:
		
							parent
							
								
									de73cf300b
								
							
						
					
					
						commit
						bef080c60a
					
				
							
								
								
									
										48
									
								
								pom.xml
								
								
								
								
							
							
						
						
									
										48
									
								
								pom.xml
								
								
								
								
							| 
						 | 
					@ -22,6 +22,7 @@
 | 
				
			||||||
        <bitwalker.version>1.21</bitwalker.version>
 | 
					        <bitwalker.version>1.21</bitwalker.version>
 | 
				
			||||||
        <swagger.version>2.9.2</swagger.version>
 | 
					        <swagger.version>2.9.2</swagger.version>
 | 
				
			||||||
		<kaptcha.version>2.3.2</kaptcha.version>
 | 
							<kaptcha.version>2.3.2</kaptcha.version>
 | 
				
			||||||
 | 
							<mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
 | 
				
			||||||
        <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
 | 
					        <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
 | 
				
			||||||
        <fastjson.version>1.2.75</fastjson.version>
 | 
					        <fastjson.version>1.2.75</fastjson.version>
 | 
				
			||||||
        <oshi.version>5.6.0</oshi.version>
 | 
					        <oshi.version>5.6.0</oshi.version>
 | 
				
			||||||
| 
						 | 
					@ -37,7 +38,7 @@
 | 
				
			||||||
    <!-- 依赖声明 -->
 | 
					    <!-- 依赖声明 -->
 | 
				
			||||||
    <dependencyManagement>
 | 
					    <dependencyManagement>
 | 
				
			||||||
        <dependencies>
 | 
					        <dependencies>
 | 
				
			||||||
        
 | 
					
 | 
				
			||||||
            <!-- SpringBoot的依赖配置-->
 | 
					            <!-- SpringBoot的依赖配置-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>org.springframework.boot</groupId>
 | 
					                <groupId>org.springframework.boot</groupId>
 | 
				
			||||||
| 
						 | 
					@ -46,28 +47,35 @@
 | 
				
			||||||
                <type>pom</type>
 | 
					                <type>pom</type>
 | 
				
			||||||
                <scope>import</scope>
 | 
					                <scope>import</scope>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
            
 | 
					
 | 
				
			||||||
            <!--阿里数据库连接池 -->
 | 
					            <!--阿里数据库连接池 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.alibaba</groupId>
 | 
					                <groupId>com.alibaba</groupId>
 | 
				
			||||||
                <artifactId>druid-spring-boot-starter</artifactId>
 | 
					                <artifactId>druid-spring-boot-starter</artifactId>
 | 
				
			||||||
                <version>${druid.version}</version>
 | 
					                <version>${druid.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
	        
 | 
					
 | 
				
			||||||
            <!-- 解析客户端操作系统、浏览器等 -->
 | 
					            <!-- 解析客户端操作系统、浏览器等 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>eu.bitwalker</groupId>
 | 
					                <groupId>eu.bitwalker</groupId>
 | 
				
			||||||
                <artifactId>UserAgentUtils</artifactId>
 | 
					                <artifactId>UserAgentUtils</artifactId>
 | 
				
			||||||
                <version>${bitwalker.version}</version>
 | 
					                <version>${bitwalker.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
 | 
					            <!-- SpringBoot集成mybatis框架 -->
 | 
				
			||||||
 | 
					            <dependency>
 | 
				
			||||||
 | 
					                <groupId>org.mybatis.spring.boot</groupId>
 | 
				
			||||||
 | 
					                <artifactId>mybatis-spring-boot-starter</artifactId>
 | 
				
			||||||
 | 
					                <version>${mybatis-spring-boot.version}</version>
 | 
				
			||||||
 | 
					            </dependency>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <!-- pagehelper 分页插件 -->
 | 
					            <!-- pagehelper 分页插件 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.github.pagehelper</groupId>
 | 
					                <groupId>com.github.pagehelper</groupId>
 | 
				
			||||||
                <artifactId>pagehelper-spring-boot-starter</artifactId>
 | 
					                <artifactId>pagehelper-spring-boot-starter</artifactId>
 | 
				
			||||||
                <version>${pagehelper.boot.version}</version>
 | 
					                <version>${pagehelper.boot.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- 获取系统信息 -->
 | 
					            <!-- 获取系统信息 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.github.oshi</groupId>
 | 
					                <groupId>com.github.oshi</groupId>
 | 
				
			||||||
| 
						 | 
					@ -86,7 +94,7 @@
 | 
				
			||||||
                <artifactId>jna-platform</artifactId>
 | 
					                <artifactId>jna-platform</artifactId>
 | 
				
			||||||
                <version>${jna.version}</version>
 | 
					                <version>${jna.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- swagger2-->
 | 
					            <!-- swagger2-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>io.springfox</groupId>
 | 
					                <groupId>io.springfox</groupId>
 | 
				
			||||||
| 
						 | 
					@ -103,35 +111,35 @@
 | 
				
			||||||
                    </exclusion>
 | 
					                    </exclusion>
 | 
				
			||||||
                </exclusions>
 | 
					                </exclusions>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- swagger2-UI-->
 | 
					            <!-- swagger2-UI-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>io.springfox</groupId>
 | 
					                <groupId>io.springfox</groupId>
 | 
				
			||||||
                <artifactId>springfox-swagger-ui</artifactId>
 | 
					                <artifactId>springfox-swagger-ui</artifactId>
 | 
				
			||||||
                <version>${swagger.version}</version>
 | 
					                <version>${swagger.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
            
 | 
					
 | 
				
			||||||
            <!--io常用工具类 -->
 | 
					            <!--io常用工具类 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>commons-io</groupId>
 | 
					                <groupId>commons-io</groupId>
 | 
				
			||||||
                <artifactId>commons-io</artifactId>
 | 
					                <artifactId>commons-io</artifactId>
 | 
				
			||||||
                <version>${commons.io.version}</version>
 | 
					                <version>${commons.io.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
            <!--文件上传工具类 -->
 | 
					            <!--文件上传工具类 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>commons-fileupload</groupId>
 | 
					                <groupId>commons-fileupload</groupId>
 | 
				
			||||||
                <artifactId>commons-fileupload</artifactId>
 | 
					                <artifactId>commons-fileupload</artifactId>
 | 
				
			||||||
                <version>${commons.fileupload.version}</version>
 | 
					                <version>${commons.fileupload.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- excel工具 -->
 | 
					            <!-- excel工具 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>org.apache.poi</groupId>
 | 
					                <groupId>org.apache.poi</groupId>
 | 
				
			||||||
                <artifactId>poi-ooxml</artifactId>
 | 
					                <artifactId>poi-ooxml</artifactId>
 | 
				
			||||||
                <version>${poi.version}</version>
 | 
					                <version>${poi.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!--velocity代码生成使用模板 -->
 | 
					            <!--velocity代码生成使用模板 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>org.apache.velocity</groupId>
 | 
					                <groupId>org.apache.velocity</groupId>
 | 
				
			||||||
| 
						 | 
					@ -144,63 +152,63 @@
 | 
				
			||||||
                    </exclusion>
 | 
					                    </exclusion>
 | 
				
			||||||
                </exclusions>
 | 
					                </exclusions>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- collections工具类 -->
 | 
					            <!-- collections工具类 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>commons-collections</groupId>
 | 
					                <groupId>commons-collections</groupId>
 | 
				
			||||||
                <artifactId>commons-collections</artifactId>
 | 
					                <artifactId>commons-collections</artifactId>
 | 
				
			||||||
                <version>${commons.collections.version}</version>
 | 
					                <version>${commons.collections.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- 阿里JSON解析器 -->
 | 
					            <!-- 阿里JSON解析器 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.alibaba</groupId>
 | 
					                <groupId>com.alibaba</groupId>
 | 
				
			||||||
                <artifactId>fastjson</artifactId>
 | 
					                <artifactId>fastjson</artifactId>
 | 
				
			||||||
                <version>${fastjson.version}</version>
 | 
					                <version>${fastjson.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!--Token生成与解析-->
 | 
					            <!--Token生成与解析-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>io.jsonwebtoken</groupId>
 | 
					                <groupId>io.jsonwebtoken</groupId>
 | 
				
			||||||
                <artifactId>jjwt</artifactId>
 | 
					                <artifactId>jjwt</artifactId>
 | 
				
			||||||
                <version>${jwt.version}</version>
 | 
					                <version>${jwt.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!--验证码 -->
 | 
					            <!--验证码 -->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.github.penggle</groupId>
 | 
					                <groupId>com.github.penggle</groupId>
 | 
				
			||||||
                <artifactId>kaptcha</artifactId>
 | 
					                <artifactId>kaptcha</artifactId>
 | 
				
			||||||
                <version>${kaptcha.version}</version>
 | 
					                <version>${kaptcha.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
            
 | 
					
 | 
				
			||||||
            <!-- 定时任务-->
 | 
					            <!-- 定时任务-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.ruoyi</groupId>
 | 
					                <groupId>com.ruoyi</groupId>
 | 
				
			||||||
                <artifactId>ruoyi-quartz</artifactId>
 | 
					                <artifactId>ruoyi-quartz</artifactId>
 | 
				
			||||||
                <version>${ruoyi.version}</version>
 | 
					                <version>${ruoyi.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
            <!-- 代码生成-->
 | 
					            <!-- 代码生成-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.ruoyi</groupId>
 | 
					                <groupId>com.ruoyi</groupId>
 | 
				
			||||||
                <artifactId>ruoyi-generator</artifactId>
 | 
					                <artifactId>ruoyi-generator</artifactId>
 | 
				
			||||||
                <version>${ruoyi.version}</version>
 | 
					                <version>${ruoyi.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- 核心模块-->
 | 
					            <!-- 核心模块-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.ruoyi</groupId>
 | 
					                <groupId>com.ruoyi</groupId>
 | 
				
			||||||
                <artifactId>ruoyi-framework</artifactId>
 | 
					                <artifactId>ruoyi-framework</artifactId>
 | 
				
			||||||
                <version>${ruoyi.version}</version>
 | 
					                <version>${ruoyi.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- 系统模块-->
 | 
					            <!-- 系统模块-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.ruoyi</groupId>
 | 
					                <groupId>com.ruoyi</groupId>
 | 
				
			||||||
                <artifactId>ruoyi-system</artifactId>
 | 
					                <artifactId>ruoyi-system</artifactId>
 | 
				
			||||||
                <version>${ruoyi.version}</version>
 | 
					                <version>${ruoyi.version}</version>
 | 
				
			||||||
            </dependency>
 | 
					            </dependency>
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
            <!-- 通用工具-->
 | 
					            <!-- 通用工具-->
 | 
				
			||||||
            <dependency>
 | 
					            <dependency>
 | 
				
			||||||
                <groupId>com.ruoyi</groupId>
 | 
					                <groupId>com.ruoyi</groupId>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue