Compare commits

..

10 Commits

8 changed files with 14 additions and 20 deletions

View File

@@ -1 +0,0 @@
This directory is used to store rules specific to the Developer Agent for code implementation. Only .md files are supported.

View File

@@ -1 +0,0 @@
This directory is used to store rules specific to the Design Agent for designing TOCO design elements. Only .md files are supported.

View File

@@ -1 +0,0 @@
This directory is used to store rules specific to the Modeling Agent for the domain modeling phase. Only .md files are supported.

View File

@@ -1 +0,0 @@
This directory is used to store rules specific to the Plan Agent for the overall planning phase. Only .md files are supported.

View File

@@ -1,6 +1,4 @@
server.port=8082
mock.enabled=true
#datasource
{{- if eq .dbType "oracle" }}
spring.datasource.url=jdbc:oracle:thin:@//{{ .dbHost }}:{{ .dbPort }}/ORCLCDB

View File

@@ -1,15 +1,9 @@
spring.profiles.active=local
envs=local,remote,online,custom
check=true
spring.main.allow-bean-definition-overriding=true
spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER
spring.jpa.open-in-view=false
spring.main.allow-circular-references=true
spring.login.security.csrf=false
application.name={{ .projectName }}
mybatis.configuration.map-underscore-to-camel-case=true
project_id={{ .projectId }}
project_name={{ .projectName }}
base.package={{.groupId}}
{{- if eq .dbType "mysql" }}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
@@ -36,13 +30,12 @@ db.type=dm
db.basetable.create=true
#hibernate.show_sql=true
server.ssl.enabled=false
server.forward-headers-strategy=framework
## message config , use memory for test, mq.type can be redis/rocketmq/kafka
mq.type=memory
spring.autoconfigure.exclude=org.redisson.spring.starter.RedissonAutoConfiguration
#redis
#spring.redis.host=${REDIS_HOST:redis.byteawake.com}
#spring.redis.host=${REDIS_HOST:localhost}
#spring.redis.port=6379
#spring.redis.timeout=3000

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

@@ -190,11 +190,6 @@
<artifactId>hessian</artifactId>
<version>4.0.63</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
@@ -314,5 +309,6 @@
<module>entrance</module>
<module>common</module>
<module>public_service</module>
<module>facade</module>
</modules>
</project>