#支持微服务,添加facade模块用于放置对外的rpc服务

This commit is contained in:
ycl
2026-05-11 13:51:21 +08:00
committed by oyo
parent cc0062434c
commit fde437b8b9
2 changed files with 12 additions and 0 deletions

11
template/facade/pom.xml Normal file
View File

@@ -0,0 +1,11 @@
<?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>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}</artifactId>
<version>${revision}</version>
</parent>
<artifactId>{{ .artifactId }}-facade</artifactId>
</project>

View File

@@ -303,5 +303,6 @@
<module>entrance</module>
<module>common</module>
<module>public_service</module>
<module>facade</module>
</modules>
</project>