飞滴出行网约车2022-创建乘客用户服务

master
yh 3 years ago
parent 72c55ede32
commit ef809e0737

@ -26,6 +26,7 @@
<module>api-passenger</module> <module>api-passenger</module>
<module>internal-common</module> <module>internal-common</module>
<module>service-verificationcode</module> <module>service-verificationcode</module>
<module>service-passenger-user</module>
</modules> </modules>
<dependencyManagement> <dependencyManagement>

@ -0,0 +1,29 @@
<?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">
<parent>
<artifactId>online-taxi-public</artifactId>
<groupId>com.mashibing</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mashibing</groupId>
<artifactId>service-passenger-user</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
</dependencies>
</project>

@ -0,0 +1,13 @@
package com.mashibing.servicepassengeruser;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ServicePassengerUserApplication {
public static void main(String[] args) {
SpringApplication.run(ServicePassengerUserApplication.class, args);
}
}

@ -0,0 +1,14 @@
package com.mashibing.servicepassengeruser.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@GetMapping("/test")
public String test() {
return "service-passenger-user";
}
}

@ -0,0 +1,9 @@
server:
port: 8083
spring:
application:
name: service-passenger-user
cloud:
nacos:
discovery:
server-addr: 127.0.0.1:8848
Loading…
Cancel
Save