From ccb39e91f2feaeafa2d89440c84d14db22bf856f Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期四, 22 五月 2025 10:47:01 +0800
Subject: [PATCH] FastJson的Configuration中去掉不推荐应用的JSONWriter.Feature.MapSortField(对map进行排序)

---
 pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/PmsReportApplication.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/PmsReportApplication.java b/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/PmsReportApplication.java
index 789eb66..5efafca 100644
--- a/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/PmsReportApplication.java
+++ b/pms-parent/pms-web-report/src/main/java/com/dy/pmsReport/PmsReportApplication.java
@@ -1,9 +1,15 @@
 package com.dy.pmsReport;
 
+import org.mybatis.spring.annotation.MapperScan;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.EnableAspectJAutoProxy;
 
 @SpringBootApplication
+@EnableAspectJAutoProxy
+@ComponentScan(basePackages = {"com.dy.common", "com.dy.pmsGlobal", "com.dy.pmsReport"})
+@MapperScan(basePackages={"com.dy.pmsGlobal.dao*"})
 public class PmsReportApplication {
 
     public static void main(String[] args) {

--
Gitblit v1.8.0