傅行帆 6 лет назад
Родитель
Сommit
b3857e8e0a
32 измененных файлов: 41 добавлений и 13 удалений
  1. 17
    5
      CODE/smart-community/app-api/pom.xml
  2. 10
    0
      CODE/smart-community/community-common/pom.xml
  3. 2
    2
      CODE/smart-community/community-common/src/main/java/com/community/commom/utils/MD5Utils.java
  4. 2
    2
      CODE/smart-community/community-common/src/main/java/com/community/commom/utils/OssUtil.java
  5. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/ailiyun/AESDecode.class
  6. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/mode/ResponseBean.class
  7. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/FastJsonSerializer.class
  8. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisConfiguration.class
  9. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisJsonSerializer.class
  10. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisObjectSerializer.class
  11. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisSerializer.class
  12. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisTemplate.class
  13. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/SerializationFailedException.class
  14. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/redis/SingleRedisTemplate.class
  15. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/session/UserElement.class
  16. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/AccountValidatorUtil.class
  17. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/BeanTools.class
  18. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/CommonUtils.class
  19. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/CookieUtil.class
  20. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/DESUtils.class
  21. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/DateUtils.class
  22. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/EnumUtils.class
  23. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/HttpClientUtils.class
  24. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/MD5Utils.class
  25. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/OssUtil.class
  26. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/QRCodeGeneratorUtils.class
  27. Двоичные данные
      CODE/smart-community/community-common/target/classes/com/community/commom/utils/StringConverter.class
  28. Двоичные данные
      CODE/smart-community/community-common/target/community-common-0.0.1.jar
  29. Двоичные данные
      CODE/smart-community/community-common/target/community-common-0.0.1.jar.original
  30. 3
    0
      CODE/smart-community/community-common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
  31. 3
    0
      CODE/smart-community/community-common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
  32. 4
    4
      CODE/smart-community/zuul/pom.xml

+ 17
- 5
CODE/smart-community/app-api/pom.xml Просмотреть файл

@@ -87,7 +87,6 @@
87 87
 			<groupId>com.community</groupId>
88 88
 			<artifactId>community-common</artifactId>
89 89
 			<version>0.0.1</version>
90
-			<scope>compile</scope>
91 90
 		</dependency>
92 91
 
93 92
 		<dependency>
@@ -117,10 +116,10 @@
117 116
 
118 117
 		<!-- log4j -->
119 118
 
120
-		<dependency>
121
-			<groupId>org.springframework.boot</groupId>
122
-			<artifactId>spring-boot-starter-log4j</artifactId>
123
-		</dependency>
119
+		<!--<dependency>-->
120
+			<!--<groupId>org.springframework.boot</groupId>-->
121
+			<!--<artifactId>spring-boot-starter-log4j</artifactId>-->
122
+		<!--</dependency>-->
124 123
 
125 124
 		<dependency>
126 125
 			<groupId>org.springframework.boot</groupId>
@@ -183,6 +182,19 @@
183 182
 			<plugin>
184 183
 				<groupId>org.springframework.boot</groupId>
185 184
 				<artifactId>spring-boot-maven-plugin</artifactId>
185
+				<configuration>
186
+					<includeSystemScope>true</includeSystemScope>
187
+				</configuration>
188
+			</plugin>
189
+			<plugin>
190
+				<groupId>org.apache.maven.plugins</groupId>
191
+				<artifactId>maven-compiler-plugin</artifactId>
192
+				<version>3.7.0</version>
193
+				<configuration>
194
+					<source>1.8</source>
195
+					<target>1.8</target>
196
+					<encoding>utf-8</encoding>
197
+				</configuration>
186 198
 			</plugin>
187 199
 		</plugins>
188 200
 	</build>

+ 10
- 0
CODE/smart-community/community-common/pom.xml Просмотреть файл

@@ -111,6 +111,16 @@
111 111
                 <groupId>org.springframework.boot</groupId>
112 112
                 <artifactId>spring-boot-maven-plugin</artifactId>
113 113
             </plugin>
114
+            <plugin>
115
+                <groupId>org.apache.maven.plugins</groupId>
116
+                <artifactId>maven-compiler-plugin</artifactId>
117
+                <version>3.7.0</version>
118
+                <configuration>
119
+                    <source>1.8</source>
120
+                    <target>1.8</target>
121
+                    <encoding>utf-8</encoding>
122
+                </configuration>
123
+            </plugin>
114 124
         </plugins>
115 125
     </build>
116 126
 </project>

+ 2
- 2
CODE/smart-community/community-common/src/main/java/com/community/commom/utils/MD5Utils.java Просмотреть файл

@@ -45,7 +45,7 @@ public class MD5Utils {
45 45
         }
46 46
     }
47 47
 
48
-    public static void main(String[] arge) throws Exception {
48
+/*    public static void main(String[] arge) throws Exception {
49 49
        System.out.println(MD5Utils.encode("123456"));
50
-    }
50
+    }*/
51 51
 }

+ 2
- 2
CODE/smart-community/community-common/src/main/java/com/community/commom/utils/OssUtil.java Просмотреть файл

@@ -16,7 +16,7 @@ import java.util.Date;
16 16
  * @date 2018/10/31
17 17
  */
18 18
 public class OssUtil {
19
-    public static void main(String[] args) {
19
+   /* public static void main(String[] args) {
20 20
         // Endpoint以杭州为例,其它Region请按实际情况填写。
21 21
         String endpoint = "http://oss-cn-hangzhou.aliyuncs.com";
22 22
 // 阿里云主账号AccessKey拥有所有API的访问权限,风险很高。强烈建议您创建并使用RAM账号进行API访问或日常运维,请登录 https://ram.console.aliyun.com 创建RAM账号。
@@ -37,7 +37,7 @@ public class OssUtil {
37 37
 // 关闭OSSClient。
38 38
         ossClient.shutdown();
39 39
     }
40
-
40
+*/
41 41
 
42 42
     public static String picOSS(MultipartFile uploadFile) throws Exception {
43 43
         String endpoint = "http://oss-cn-hangzhou.aliyuncs.com";

Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/ailiyun/AESDecode.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/mode/ResponseBean.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/FastJsonSerializer.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisConfiguration.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisJsonSerializer.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisObjectSerializer.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisSerializer.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/RedisTemplate.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/SerializationFailedException.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/redis/SingleRedisTemplate.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/session/UserElement.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/AccountValidatorUtil.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/BeanTools.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/CommonUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/CookieUtil.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/DESUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/DateUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/EnumUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/HttpClientUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/MD5Utils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/OssUtil.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/QRCodeGeneratorUtils.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/classes/com/community/commom/utils/StringConverter.class Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/community-common-0.0.1.jar Просмотреть файл


Двоичные данные
CODE/smart-community/community-common/target/community-common-0.0.1.jar.original Просмотреть файл


+ 3
- 0
CODE/smart-community/community-common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst Просмотреть файл

@@ -3,11 +3,14 @@ com\community\commom\utils\DateUtils.class
3 3
 com\community\commom\utils\HttpClientUtils.class
4 4
 com\community\commom\constant\Constant.class
5 5
 com\community\commom\redis\RedisConfiguration.class
6
+com\community\commom\utils\OssUtil.class
6 7
 com\community\commom\redis\SingleRedisTemplate.class
7 8
 com\community\commom\utils\CookieUtil.class
9
+com\community\commom\ailiyun\AESDecode.class
8 10
 com\community\commom\utils\EnumUtils.class
9 11
 com\community\commom\redis\RedisJsonSerializer.class
10 12
 com\community\commom\utils\BeanTools.class
13
+com\community\commom\session\UserElement.class
11 14
 com\community\commom\utils\CommonUtils.class
12 15
 com\community\commom\redis\RedisSerializer.class
13 16
 com\community\commom\utils\StringConverter.class

+ 3
- 0
CODE/smart-community/community-common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst Просмотреть файл

@@ -3,11 +3,13 @@ E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\co
3 3
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\RedisSerializer.java
4 4
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\QRCodeGeneratorUtils.java
5 5
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\StringConverter.java
6
+E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\OssUtil.java
6 7
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\HttpClientUtils.java
7 8
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\RedisConfiguration.java
8 9
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\RedisJsonSerializer.java
9 10
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\CookieUtil.java
10 11
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\RedisTemplate.java
12
+E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\ailiyun\AESDecode.java
11 13
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\DateUtils.java
12 14
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\MD5Utils.java
13 15
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\BeanTools.java
@@ -16,6 +18,7 @@ E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\co
16 18
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\constant\Constant.java
17 19
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\AccountValidatorUtil.java
18 20
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\RedisObjectSerializer.java
21
+E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\session\UserElement.java
19 22
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\redis\SerializationFailedException.java
20 23
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\DESUtils.java
21 24
 E:\gitcode\smartCommunity\CODE\smart-community\community-common\src\main\java\com\community\commom\utils\EnumUtils.java

+ 4
- 4
CODE/smart-community/zuul/pom.xml Просмотреть файл

@@ -96,10 +96,10 @@
96 96
         </dependency>
97 97
 
98 98
 		<!-- log4j -->
99
-		<dependency>
100
-			<groupId>org.springframework.boot</groupId>
101
-			<artifactId>spring-boot-starter-log4j</artifactId>
102
-		</dependency>
99
+		<!--<dependency>-->
100
+			<!--<groupId>org.springframework.boot</groupId>-->
101
+			<!--<artifactId>spring-boot-starter-log4j</artifactId>-->
102
+		<!--</dependency>-->
103 103
 
104 104
 		<dependency>
105 105
 			<groupId>org.springframework.boot</groupId>