From 64775f10abc33f13a9db50234786b99498d78957 Mon Sep 17 00:00:00 2001 From: liu Date: Tue, 21 Nov 2023 16:53:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=BB=BA=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 1 + virtual-patient-manage/pom.xml | 51 +++++++++++++++++++ .../VirtualPatientManageApplication.java | 13 +++++ .../src/main/resources/application.properties | 1 + virtual-patient-web/pom.xml | 4 -- .../VirtualPatientApplication.java | 3 -- 6 files changed, 66 insertions(+), 7 deletions(-) create mode 100644 virtual-patient-manage/pom.xml create mode 100644 virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java create mode 100644 virtual-patient-manage/src/main/resources/application.properties diff --git a/pom.xml b/pom.xml index ca8222bb..a4a59a2e 100644 --- a/pom.xml +++ b/pom.xml @@ -22,6 +22,7 @@ virtual-patient-model virtual-patient-web virtual-patient-rasa + virtual-patient-manage diff --git a/virtual-patient-manage/pom.xml b/virtual-patient-manage/pom.xml new file mode 100644 index 00000000..46fecf9f --- /dev/null +++ b/virtual-patient-manage/pom.xml @@ -0,0 +1,51 @@ + + + 4.0.0 + + com.supervision + virtual-patient + 1.0-SNAPSHOT + + + virtual-patient-manage + virtual-patient-manage + jar + + + + + com.supervision + virtual-patient-model + ${project.version} + + + + com.supervision + virtual-patient-common + ${project.version} + + + + + org.projectlombok + lombok + provided + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + paketobuildpacks/builder-jammy-base:latest + + + + + + + diff --git a/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java b/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java new file mode 100644 index 00000000..a99e098a --- /dev/null +++ b/virtual-patient-manage/src/main/java/com/supervision/manage/VirtualPatientManageApplication.java @@ -0,0 +1,13 @@ +package com.supervision.manage; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class VirtualPatientManageApplication { + + public static void main(String[] args) { + SpringApplication.run(VirtualPatientManageApplication.class, args); + } + +} diff --git a/virtual-patient-manage/src/main/resources/application.properties b/virtual-patient-manage/src/main/resources/application.properties new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/virtual-patient-manage/src/main/resources/application.properties @@ -0,0 +1 @@ + diff --git a/virtual-patient-web/pom.xml b/virtual-patient-web/pom.xml index 67c7f60b..0d3bfcd5 100644 --- a/virtual-patient-web/pom.xml +++ b/virtual-patient-web/pom.xml @@ -30,10 +30,6 @@ ${project.version} - - org.springframework.boot - spring-boot-starter-websocket - org.freemarker diff --git a/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java b/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java index 7a4fcbf3..2332487e 100644 --- a/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java +++ b/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java @@ -1,11 +1,8 @@ package com.supervision; import org.mybatis.spring.annotation.MapperScan; -import org.mybatis.spring.annotation.MapperScans; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.web.socket.config.annotation.EnableWebSocket; @SpringBootApplication @MapperScan(basePackages = {"com.supervision.**.mapper"})