feat:first commit
This commit is contained in:
20
xs-server/pom.xml
Normal file
20
xs-server/pom.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.xiang</groupId>
|
||||
<artifactId>xservice-gw</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>xs-server</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
15
xs-server/src/main/java/com/xiang/XsGatewayApplication.java
Normal file
15
xs-server/src/main/java/com/xiang/XsGatewayApplication.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.xiang;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* @Author: xiang
|
||||
* @Date: 2025-08-12 17:26
|
||||
*/
|
||||
@SpringBootApplication
|
||||
public class XsGatewayApplication {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(XsGatewayApplication.class, args);
|
||||
}
|
||||
}
|
||||
0
xs-server/src/main/resources/application-local.yml
Normal file
0
xs-server/src/main/resources/application-local.yml
Normal file
6
xs-server/src/main/resources/application.yml
Normal file
6
xs-server/src/main/resources/application.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
server:
|
||||
port: 38010
|
||||
|
||||
spring:
|
||||
profiles:
|
||||
active: local
|
||||
Reference in New Issue
Block a user