Pārlūkot izejas kodu

公共模块、评估模块初始化

lizhenhao 2 gadi atpakaļ
vecāks
revīzija
a07f38ba86

+ 27 - 0
jeeplus-modules/jeeplus-assess/src/main/java/com/jeeplus/assess/JeeplusAssessApplication.java

@@ -0,0 +1,27 @@
+package com.jeeplus.assess;
+
+import com.jeeplus.core.annotation.JeeplusCloudApplication;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
+import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
+import org.springframework.cache.annotation.EnableCaching;
+
+/**
+ * 评估模块
+ */
+@EnableCaching
+@JeeplusCloudApplication
+public class JeeplusAssessApplication {
+    public static void main(String[] args) {
+        SpringApplication.run ( JeeplusAssessApplication.class, args );
+        System.out.println ( " O(∩_∩)O~ 评估模块启动成功 ^_^゙  \n" +
+                "    _                         _                                       _                      \n" +
+                "   (_)                       | |                                     | |                     \n" +
+                "    _    ___    ___   _ __   | |  _   _   ___     ___   _   _   ___  | |_    ___   _ __ ___  \n" +
+                "   | |  / _ \\  / _ \\ | '_ \\  | | | | | | / __|   / __| | | | | / __| | __|  / _ \\ | '_ ` _ \\ \n" +
+                "   | | |  __/ |  __/ | |_) | | | | |_| | \\__ \\   \\__ \\ | |_| | \\__ \\ | |_  |  __/ | | | | | |\n" +
+                "   | |  \\___|  \\___| | .__/  |_|  \\__,_| |___/   |___/  \\__, | |___/  \\__|  \\___| |_| |_| |_|\n" +
+                "  _/ |               | |                                 __/ |                               \n" +
+                " |__/                |_|                                |___/                                " );
+    }
+}