创建仓库
This commit is contained in:
22
target/classes/META-INF/spring-configuration-metadata.json
Normal file
22
target/classes/META-INF/spring-configuration-metadata.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"groups": [
|
||||
{
|
||||
"name": "chat",
|
||||
"type": "vvpkassistant.Data.WxChatParam",
|
||||
"sourceType": "vvpkassistant.Data.WxChatParam"
|
||||
}
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"name": "chat.app-id",
|
||||
"type": "java.lang.String",
|
||||
"sourceType": "vvpkassistant.Data.WxChatParam"
|
||||
},
|
||||
{
|
||||
"name": "chat.app-key",
|
||||
"type": "java.lang.String",
|
||||
"sourceType": "vvpkassistant.Data.WxChatParam"
|
||||
}
|
||||
],
|
||||
"hints": []
|
||||
}
|
||||
14
target/classes/application-dev.yml
Normal file
14
target/classes/application-dev.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
username: root
|
||||
password: wfn53400
|
||||
url: jdbc:mysql://mysql.text.zhukeping.com:3326/vv_assistant?allowMultiQueries=true
|
||||
|
||||
|
||||
|
||||
chat:
|
||||
appId: 1600092688
|
||||
appKey: 9bb6df04907a8cff9292eee8d6b32158d008350198acba11607068d91cb65f66
|
||||
13
target/classes/application-local.yml
Normal file
13
target/classes/application-local.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
username: root
|
||||
password: wfn53400
|
||||
url: jdbc:mysql://mysql.text.zhukeping.com:3326/vv_assistant?allowMultiQueries=true
|
||||
|
||||
|
||||
chat:
|
||||
appId: 1600092688
|
||||
appKey: 9bb6df04907a8cff9292eee8d6b32158d008350198acba11607068d91cb65f66
|
||||
13
target/classes/application-prd.yml
Normal file
13
target/classes/application-prd.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
username: root
|
||||
password: niu995228
|
||||
url: jdbc:mysql://49.235.115.212:3336/vv_assistant
|
||||
|
||||
|
||||
chat:
|
||||
appId: 1600086767
|
||||
appKey: 4f240bf11de12b5d8fc596556953f4f732416456ba5bcdc30c689913def0fc35
|
||||
9
target/classes/application.yml
Normal file
9
target/classes/application.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
server:
|
||||
port: 8086
|
||||
|
||||
spring:
|
||||
profiles:
|
||||
active: dev
|
||||
|
||||
|
||||
|
||||
19
target/classes/log4j2.xml
Normal file
19
target/classes/log4j2.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="DEBUG">
|
||||
<Appenders>
|
||||
<!-- 控制台输出 -->
|
||||
<Console name="Console" target="SYSTEM_OUT">
|
||||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%t] %-5level %logger{36} - %msg%n"/>
|
||||
</Console>
|
||||
<!-- 文件输出 -->
|
||||
<File name="FileAppender" fileName="logs/app.log">
|
||||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%t] %-5level %logger{36} - %msg%n"/>
|
||||
</File>
|
||||
</Appenders>
|
||||
<Loggers>
|
||||
<Root level="DEBUG">
|
||||
<AppenderRef ref="Console"/>
|
||||
<AppenderRef ref="FileAppender"/>
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
||||
Reference in New Issue
Block a user