|
@@ -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" +
|
|
|
+ " |__/ |_| |___/ " );
|
|
|
+ }
|
|
|
+}
|