From 0f4e49782dff5427ad00729ff0a11984cc48b7bb Mon Sep 17 00:00:00 2001
From: LSH <brook_w@163.com>
Date: 星期三, 10 八月 2022 14:07:01 +0800
Subject: [PATCH] Default Changelist
---
pom.xml | 17 ++++++++++++++++-
src/main/resources/application.yml | 4 ++--
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3baad37..415d1e7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,12 +106,27 @@
</dependencies>
<build>
- <finalName>lywms</finalName>
+ <finalName>gzynwms</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.6.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>java</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <classpathScope>test</classpathScope>
+ </configuration>
+ </plugin>
</plugins>
</build>
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index da1af6a..6c35bbb 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -1,5 +1,5 @@
server:
- port: 8088
+ port: 8080
servlet:
context-path: /@pom.build.finalName@
@@ -10,7 +10,7 @@
enabled: false
datasource:
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
- url: jdbc:sqlserver://localhost:1433;databasename=hylyasrs
+ url: jdbc:sqlserver://192.168.4.15:1433;databasename=gzynasrs
username: sa
password: sa@123
mvc:
--
Gitblit v1.9.1