From a3202d4c62be404247d23f0676e95f8c5d146983 Mon Sep 17 00:00:00 2001 From: 刘小明 <liuxm_a@163.com> Date: 星期六, 06 七月 2024 09:49:17 +0800 Subject: [PATCH] 添加根据设备号查询生产日志,生命周期,和相关信息;限制上传文档类型 --- pms-parent/pms-web-station/pom.xml | 186 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 184 insertions(+), 2 deletions(-) diff --git a/pms-parent/pms-web-station/pom.xml b/pms-parent/pms-web-station/pom.xml index 650211e..3677720 100644 --- a/pms-parent/pms-web-station/pom.xml +++ b/pms-parent/pms-web-station/pom.xml @@ -11,7 +11,6 @@ </parent> <packaging>jar</packaging> - <groupId>com.dy</groupId> <artifactId>pms-web-station</artifactId> <version>1.0.0</version> <name>pms-web-station</name> @@ -35,6 +34,189 @@ <artifactId>thumbnailator</artifactId> <version>${thumbnailator.version}</version> </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-log4j2</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + </dependency> + <!--log4j-bom鏄釜pom锛屾病鏈夊叿浣撶殑jar鍖�, springboot闇�瑕佸畠 --> + <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-bom --> + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-bom</artifactId> + <version>${log4j-bom}</version> + <!-- 杩欎釜娌℃湁jar鍖咃紝鍙湁pom鏂囦欢锛屾墍浠ヨ鍔犱笂涓嬮潰璁剧疆 --> + <type>pom</type> + </dependency> + <!-- lombok --> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + <!-- @Aspect @Pointcut @Around绛夊簲鐢� --> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>aspectjweaver</artifactId> + </dependency> + <!-- JsonFormat鐢ㄥ埌 --> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </dependency> + <!-- 鐢ㄤ簬杈ㄨlog4j2.yml鏂囦欢 --> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-yaml</artifactId> + </dependency> + <!--mysql椹卞姩--> + <dependency> + <groupId>com.mysql</groupId> + <artifactId>mysql-connector-j</artifactId> + </dependency> + <!--druid-spring-boot杩炴帴姹�--> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>druid-spring-boot-starter</artifactId> + <version>${druid-spring-boot-starter.version}</version> + </dependency> + <!--mybatis-plus-spring-boot--> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-boot-starter</artifactId> + <exclusions> + <exclusion> + <artifactId>mybatis-spring</artifactId> + <groupId>org.mybatis</groupId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.mybatis</groupId> + <artifactId>mybatis-spring</artifactId> + <version>${mybatis-spring.version}</version> + </dependency> + <!-- 闃块噷fastjson --> + <dependency> + <groupId>cglib</groupId> + <artifactId>cglib</artifactId> + </dependency> + <dependency> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2</artifactId> + <version>${fastjson2.version}</version> + </dependency> + <dependency> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2-extension-spring6</artifactId> + <version>${fastjson2.version}</version> + </dependency> + <!-- 闃块噷EasyExcel --> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>easyexcel</artifactId> + <version>${easyexcel.version}</version> + </dependency> + <!-- vo po杞崲 --> + <dependency> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct</artifactId> + <version>${mapstruct.version}</version> + </dependency> + <dependency> + <groupId>org.mapstruct</groupId> + <artifactId>mapstruct-processor</artifactId> + <version>${mapstruct.version}</version> + </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </dependency> + <!-- bean鍜宮ap浜掕浆鎹� --> + <dependency> + <groupId>org.apache.dubbo</groupId> + <artifactId>dubbo</artifactId> + <version>${dubbo.version}</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </exclusion> + <exclusion> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba.spring</groupId> + <artifactId>spring-context-support</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba</groupId> + <artifactId>hessian-lite</artifactId> + </exclusion> + <exclusion> + <groupId>org.javassist</groupId> + <artifactId>javassist</artifactId> + </exclusion> + </exclusions> + </dependency> + + + <!-- jdom2 --> + <dependency> + <groupId>org.jdom</groupId> + <artifactId>jdom2</artifactId> + </dependency> + + <!-- quartz --> + <dependency> + <groupId>org.quartz-scheduler</groupId> + <artifactId>quartz</artifactId> + </dependency> + <!-- zxing鐢熸垚浜岀淮鐮� --> + <dependency> + <groupId>com.google.zxing</groupId> + <artifactId>core</artifactId> + </dependency> + <dependency> + <groupId>com.google.zxing</groupId> + <artifactId>javase</artifactId> + </dependency> + + <!-- Hutool鏄竴涓皬鑰屽叏鐨凧ava宸ュ叿绫诲簱(https://github.com/dromara/hutool) --> + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + </dependency> + <dependency> + <groupId>com.dy</groupId> + <artifactId>pms-web-product</artifactId> + <version>1.0.0</version> + <scope>compile</scope> + </dependency> </dependencies> <build> @@ -57,7 +239,7 @@ <stripVersion>false</stripVersion> <finalName>${project.artifactId}-${project.version}</finalName> <layout>ZIP</layout> - <mainClass>com.dy.pmsBase.PmsBaseApplication</mainClass> + <mainClass>com.dy.pmsStation.PmsStationApplication</mainClass> <includes> <include> <groupId>com.dy</groupId> -- Gitblit v1.8.0