Compare commits
10 Commits
e625c5dab6
...
56c4b870ac
| Author | SHA1 | Date | |
|---|---|---|---|
| 56c4b870ac | |||
| 9ae5514df0 | |||
| 84b2fa9e55 | |||
| 8cb17aa8e7 | |||
| 0128001559 | |||
| 212fb84927 | |||
| f359c546e3 | |||
| 502372b348 | |||
| 4fc8d38caf | |||
| 9106381d91 |
@@ -1 +0,0 @@
|
||||
This directory is used to store rules specific to the Developer Agent for code implementation. Only .md files are supported.
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -1,6 +1,4 @@
|
||||
server.port=8082
|
||||
|
||||
mock.enabled=true
|
||||
#datasource
|
||||
{{- if eq .dbType "oracle" }}
|
||||
spring.datasource.url=jdbc:oracle:thin:@//{{ .dbHost }}:{{ .dbPort }}/ORCLCDB
|
||||
|
||||
@@ -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
11
template/facade/pom.xml
Normal 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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user