提交 修改
This commit is contained in:
parent
096c351d29
commit
a12d098003
286
.gitignore
vendored
286
.gitignore
vendored
@ -1,31 +1,265 @@
|
|||||||
HELP.md
|
# Created by .ignore support plugin (hsz.mobi)
|
||||||
target/
|
### macOS template
|
||||||
!.mvn/wrapper/maven-wrapper.jar
|
*.DS_Store
|
||||||
!**/src/main/**
|
.AppleDouble
|
||||||
!**/src/test/**
|
.LSOverride
|
||||||
|
|
||||||
### STS ###
|
# Icon must end with two \r
|
||||||
.apt_generated
|
Icon
|
||||||
.classpath
|
|
||||||
.factorypath
|
|
||||||
.project
|
|
||||||
.settings
|
|
||||||
.springBeans
|
|
||||||
.sts4-cache
|
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
|
||||||
.idea
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
### Java template
|
||||||
|
# Compiled class file
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# BlueJ files
|
||||||
|
*.ctxt
|
||||||
|
|
||||||
|
# Mobile Tools for Java (J2ME)
|
||||||
|
.mtj.tmp/
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
||||||
|
### JetBrains template
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff:
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
|
||||||
|
# Sensitive or high-churn files:
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.xml
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
|
||||||
|
# Gradle:
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Mongo Explorer plugin:
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
## File-based project format:
|
||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
|
## Plugin-specific files:
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
### Eclipse template
|
||||||
|
|
||||||
|
.metadata
|
||||||
|
bin/
|
||||||
|
tmp/
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
.recommenders
|
||||||
|
|
||||||
|
# Eclipse Core
|
||||||
|
.project
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# PyDev specific (Python IDE for Eclipse)
|
||||||
|
*.pydevproject
|
||||||
|
|
||||||
|
# CDT-specific (C/C++ Development Tooling)
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# Java annotation processor (APT)
|
||||||
|
.factorypath
|
||||||
|
|
||||||
|
# PDT-specific (PHP Development Tools)
|
||||||
|
.buildpath
|
||||||
|
|
||||||
|
# sbteclipse plugin
|
||||||
|
.target
|
||||||
|
|
||||||
|
# Tern plugin
|
||||||
|
.tern-project
|
||||||
|
|
||||||
|
# TeXlipse plugin
|
||||||
|
.texlipse
|
||||||
|
|
||||||
|
# STS (Spring Tool Suite)
|
||||||
|
.springBeans
|
||||||
|
|
||||||
|
# Code Recommenders
|
||||||
|
.recommenders/
|
||||||
|
|
||||||
|
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||||
|
.cache-main
|
||||||
|
.scala_dependencies
|
||||||
|
.worksheet
|
||||||
|
### Vim template
|
||||||
|
# swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-v][a-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
# session
|
||||||
|
Session.vim
|
||||||
|
# temporary
|
||||||
|
.netrwhist
|
||||||
|
*~
|
||||||
|
# auto-generated tag files
|
||||||
|
tags
|
||||||
|
### Maven template
|
||||||
|
target/
|
||||||
|
/target/classes/
|
||||||
|
/target/classes/*
|
||||||
|
/target/classes
|
||||||
|
/target/*
|
||||||
|
pom.xml.tag
|
||||||
|
pom.xml.releaseBackup
|
||||||
|
pom.xml.versionsBackup
|
||||||
|
pom.xml.next
|
||||||
|
release.properties
|
||||||
|
dependency-reduced-pom.xml
|
||||||
|
buildNumber.properties
|
||||||
|
.mvn/timing.properties
|
||||||
|
|
||||||
|
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
||||||
|
!/.mvn/wrapper/maven-wrapper.jar
|
||||||
|
### Gradle template
|
||||||
|
.gradle
|
||||||
|
/build/
|
||||||
|
|
||||||
|
# Ignore Gradle GUI config
|
||||||
|
gradle-app.setting
|
||||||
|
|
||||||
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Cache of project
|
||||||
|
.gradletasknamecache
|
||||||
|
|
||||||
|
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
|
||||||
|
# gradle/wrapper/gradle-wrapper.properties
|
||||||
|
|
||||||
|
### Node template
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
pids
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||||
|
lib-cov
|
||||||
|
|
||||||
|
# Coverage directory used by tools like istanbul
|
||||||
|
coverage
|
||||||
|
|
||||||
|
# nyc test coverage
|
||||||
|
.nyc_output
|
||||||
|
|
||||||
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
|
.grunt
|
||||||
|
|
||||||
|
# Bower dependency directory (https://bower.io/)
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
# node-waf configuration
|
||||||
|
.lock-wscript
|
||||||
|
|
||||||
|
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||||
|
build/Release
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
jspm_packages/
|
||||||
|
|
||||||
|
# Typescript v1 declaration files
|
||||||
|
typings/
|
||||||
|
|
||||||
|
# Optional npm cache directory
|
||||||
|
.npm
|
||||||
|
|
||||||
|
# Optional eslint cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
# Optional REPL history
|
||||||
|
.node_repl_history
|
||||||
|
|
||||||
|
# Output of 'npm pack'
|
||||||
|
*.tgz
|
||||||
|
|
||||||
|
# Yarn Integrity file
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# dotenv environment variables file
|
||||||
|
.env
|
||||||
|
|
||||||
|
### Custom
|
||||||
|
.idea
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
build
|
||||||
|
/files
|
||||||
|
*/tmp/**.html
|
||||||
|
|
||||||
### NetBeans ###
|
/log
|
||||||
/nbproject/private/
|
|
||||||
/nbbuild/
|
|
||||||
/dist/
|
|
||||||
/nbdist/
|
|
||||||
/.nb-gradle/
|
|
||||||
build/
|
|
||||||
|
|
||||||
### VS Code ###
|
|
||||||
.vscode/
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,315 +0,0 @@
|
|||||||
{
|
|
||||||
"groups": [
|
|
||||||
{
|
|
||||||
"name": "dynamic",
|
|
||||||
"type": "com.lz.datasource.properties.DynamicDataSourceProperties",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DynamicDataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dynamic",
|
|
||||||
"type": "io.lz.datasource.properties.DynamicDataSourceProperties",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DynamicDataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt",
|
|
||||||
"type": "com.lz.modules.app.utils.JwtUtils",
|
|
||||||
"sourceType": "com.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt",
|
|
||||||
"type": "io.lz.modules.app.utils.JwtUtils",
|
|
||||||
"sourceType": "io.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid",
|
|
||||||
"type": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"sourceType": "com.lz.datasource.config.DynamicDataSourceConfig",
|
|
||||||
"sourceMethod": "dataSourceProperties()"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid",
|
|
||||||
"type": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"sourceType": "io.lz.datasource.config.DynamicDataSourceConfig",
|
|
||||||
"sourceMethod": "dataSourceProperties()"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"name": "dynamic.datasource",
|
|
||||||
"type": "java.util.Map<java.lang.String,com.lz.datasource.properties.DataSourceProperties>",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DynamicDataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dynamic.datasource",
|
|
||||||
"type": "java.util.Map<java.lang.String,io.lz.datasource.properties.DataSourceProperties>",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DynamicDataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.expire",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "com.lz.modules.app.utils.JwtUtils",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.expire",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "io.lz.modules.app.utils.JwtUtils",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.header",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.header",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.secret",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "renren.jwt.secret",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.modules.app.utils.JwtUtils"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.driver-class-name",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.driver-class-name",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.filters",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": "stat,wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.filters",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": "stat,wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.initial-size",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"description": "Druid默认参数",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.initial-size",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"description": "Druid默认参数",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-active",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 10
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-active",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 10
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-evictable-idle-time-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-evictable-idle-time-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-open-prepared-statements",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-open-prepared-statements",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-wait",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.max-wait",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.min-evictable-idle-time-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.min-evictable-idle-time-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.min-idle",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.min-idle",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.password",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.password",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.pool-prepared-statements",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.pool-prepared-statements",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.share-prepared-statements",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.share-prepared-statements",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-on-borrow",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-on-borrow",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-on-return",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-on-return",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-while-idle",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.test-while-idle",
|
|
||||||
"type": "java.lang.Boolean",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.time-between-eviction-runs-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.time-between-eviction-runs-millis",
|
|
||||||
"type": "java.lang.Long",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.url",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.url",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.username",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.username",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.validation-query",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": "select 1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.validation-query",
|
|
||||||
"type": "java.lang.String",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": "select 1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.validation-query-timeout",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "com.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "spring.datasource.druid.validation-query-timeout",
|
|
||||||
"type": "java.lang.Integer",
|
|
||||||
"sourceType": "io.lz.datasource.properties.DataSourceProperties",
|
|
||||||
"defaultValue": -1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"hints": []
|
|
||||||
}
|
|
||||||
@ -1,46 +0,0 @@
|
|||||||
spring:
|
|
||||||
datasource:
|
|
||||||
type: com.alibaba.druid.pool.DruidDataSource
|
|
||||||
druid:
|
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
||||||
url: jdbc:mysql://172.16.157.238:3306/lz_management?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
|
||||||
username: ldd_biz
|
|
||||||
password: Hello1234
|
|
||||||
initial-size: 10
|
|
||||||
max-active: 100
|
|
||||||
min-idle: 10
|
|
||||||
max-wait: 60000
|
|
||||||
pool-prepared-statements: true
|
|
||||||
max-pool-prepared-statement-per-connection-size: 20
|
|
||||||
time-between-eviction-runs-millis: 60000
|
|
||||||
min-evictable-idle-time-millis: 300000
|
|
||||||
test-while-idle: true
|
|
||||||
test-on-borrow: false
|
|
||||||
test-on-return: false
|
|
||||||
stat-view-servlet:
|
|
||||||
enabled: true
|
|
||||||
url-pattern: /druid/*
|
|
||||||
filter:
|
|
||||||
stat:
|
|
||||||
log-slow-sql: true
|
|
||||||
slow-sql-millis: 1000
|
|
||||||
merge-sql: false
|
|
||||||
wall:
|
|
||||||
config:
|
|
||||||
multi-statement-allow: true
|
|
||||||
console:
|
|
||||||
env: dev
|
|
||||||
|
|
||||||
##多数据源的配置
|
|
||||||
#dynamic:
|
|
||||||
# datasource:
|
|
||||||
# slave1:
|
|
||||||
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
||||||
# url: jdbc:sqlserver://localhost:1433;DatabaseName=lz_security
|
|
||||||
# username: sa
|
|
||||||
# password: 123456
|
|
||||||
# slave2:
|
|
||||||
# driver-class-name: org.postgresql.Driver
|
|
||||||
# url: jdbc:postgresql://localhost:5432/lz_security
|
|
||||||
# username: lz
|
|
||||||
# password: 123456
|
|
||||||
@ -1,46 +0,0 @@
|
|||||||
spring:
|
|
||||||
datasource:
|
|
||||||
type: com.alibaba.druid.pool.DruidDataSource
|
|
||||||
druid:
|
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
||||||
url: jdbc:mysql://rm-bp1xhc66ruz72t68p.mysql.rds.aliyuncs.com:3306/lz_manger?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
|
||||||
username: lz_manger
|
|
||||||
password: N8zfBwhOC
|
|
||||||
initial-size: 10
|
|
||||||
max-active: 100
|
|
||||||
min-idle: 10
|
|
||||||
max-wait: 60000
|
|
||||||
pool-prepared-statements: true
|
|
||||||
max-pool-prepared-statement-per-connection-size: 20
|
|
||||||
time-between-eviction-runs-millis: 60000
|
|
||||||
min-evictable-idle-time-millis: 300000
|
|
||||||
test-while-idle: true
|
|
||||||
test-on-borrow: false
|
|
||||||
test-on-return: false
|
|
||||||
stat-view-servlet:
|
|
||||||
enabled: true
|
|
||||||
url-pattern: /druid/*
|
|
||||||
filter:
|
|
||||||
stat:
|
|
||||||
log-slow-sql: true
|
|
||||||
slow-sql-millis: 1000
|
|
||||||
merge-sql: false
|
|
||||||
wall:
|
|
||||||
config:
|
|
||||||
multi-statement-allow: true
|
|
||||||
console:
|
|
||||||
env: prod
|
|
||||||
|
|
||||||
##多数据源的配置
|
|
||||||
#dynamic:
|
|
||||||
# datasource:
|
|
||||||
# slave1:
|
|
||||||
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
||||||
# url: jdbc:sqlserver://localhost:1433;DatabaseName=renren_security
|
|
||||||
# username: sa
|
|
||||||
# password: 123456
|
|
||||||
# slave2:
|
|
||||||
# driver-class-name: org.postgresql.Driver
|
|
||||||
# url: jdbc:postgresql://localhost:5432/renren_security
|
|
||||||
# username: renren
|
|
||||||
# password: 123456
|
|
||||||
@ -1,46 +0,0 @@
|
|||||||
spring:
|
|
||||||
datasource:
|
|
||||||
type: com.alibaba.druid.pool.DruidDataSource
|
|
||||||
druid:
|
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
||||||
url: jdbc:mysql://localhost:3306/renren_fast?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
|
|
||||||
username: renren
|
|
||||||
password: 123456
|
|
||||||
initial-size: 10
|
|
||||||
max-active: 100
|
|
||||||
min-idle: 10
|
|
||||||
max-wait: 60000
|
|
||||||
pool-prepared-statements: true
|
|
||||||
max-pool-prepared-statement-per-connection-size: 20
|
|
||||||
time-between-eviction-runs-millis: 60000
|
|
||||||
min-evictable-idle-time-millis: 300000
|
|
||||||
test-while-idle: true
|
|
||||||
test-on-borrow: false
|
|
||||||
test-on-return: false
|
|
||||||
stat-view-servlet:
|
|
||||||
enabled: true
|
|
||||||
url-pattern: /druid/*
|
|
||||||
filter:
|
|
||||||
stat:
|
|
||||||
log-slow-sql: true
|
|
||||||
slow-sql-millis: 1000
|
|
||||||
merge-sql: false
|
|
||||||
wall:
|
|
||||||
config:
|
|
||||||
multi-statement-allow: true
|
|
||||||
console:
|
|
||||||
env: test
|
|
||||||
|
|
||||||
##多数据源的配置
|
|
||||||
#dynamic:
|
|
||||||
# datasource:
|
|
||||||
# slave1:
|
|
||||||
# driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
||||||
# url: jdbc:sqlserver://localhost:1433;DatabaseName=renren_security
|
|
||||||
# username: sa
|
|
||||||
# password: 123456
|
|
||||||
# slave2:
|
|
||||||
# driver-class-name: org.postgresql.Driver
|
|
||||||
# url: jdbc:postgresql://localhost:5432/renren_security
|
|
||||||
# username: renren
|
|
||||||
# password: 123456
|
|
||||||
@ -1,76 +0,0 @@
|
|||||||
# Tomcat
|
|
||||||
server:
|
|
||||||
tomcat:
|
|
||||||
uri-encoding: UTF-8
|
|
||||||
max-threads: 1000
|
|
||||||
min-spare-threads: 30
|
|
||||||
port: 8080
|
|
||||||
connection-timeout: 5000ms
|
|
||||||
servlet:
|
|
||||||
context-path: /lz_management
|
|
||||||
|
|
||||||
spring:
|
|
||||||
# 环境 dev|test|prod
|
|
||||||
profiles:
|
|
||||||
active: dev
|
|
||||||
# jackson时间格式化
|
|
||||||
jackson:
|
|
||||||
time-zone: GMT+8
|
|
||||||
date-format: yyyy-MM-dd HH:mm:ss
|
|
||||||
servlet:
|
|
||||||
multipart:
|
|
||||||
max-file-size: 100MB
|
|
||||||
max-request-size: 100MB
|
|
||||||
enabled: true
|
|
||||||
redis:
|
|
||||||
open: false # 是否开启redis缓存 true开启 false关闭
|
|
||||||
database: 0
|
|
||||||
host: localhost
|
|
||||||
port: 6379
|
|
||||||
password: # 密码(默认为空)
|
|
||||||
timeout: 6000ms # 连接超时时长(毫秒)
|
|
||||||
jedis:
|
|
||||||
pool:
|
|
||||||
max-active: 1000 # 连接池最大连接数(使用负值表示没有限制)
|
|
||||||
max-wait: -1ms # 连接池最大阻塞等待时间(使用负值表示没有限制)
|
|
||||||
max-idle: 10 # 连接池中的最大空闲连接
|
|
||||||
min-idle: 5 # 连接池中的最小空闲连接
|
|
||||||
mvc:
|
|
||||||
throw-exception-if-no-handler-found: true
|
|
||||||
# resources:
|
|
||||||
# add-mappings: false
|
|
||||||
|
|
||||||
|
|
||||||
#mybatis
|
|
||||||
mybatis-plus:
|
|
||||||
mapper-locations: classpath*:/mapper/**/*.xml
|
|
||||||
#实体扫描,多个package用逗号或者分号分隔
|
|
||||||
typeAliasesPackage: io.lz.modules.*.entity
|
|
||||||
global-config:
|
|
||||||
#数据库相关配置
|
|
||||||
db-config:
|
|
||||||
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
|
||||||
id-type: AUTO
|
|
||||||
logic-delete-value: -1
|
|
||||||
logic-not-delete-value: 0
|
|
||||||
banner: false
|
|
||||||
#原生配置
|
|
||||||
configuration:
|
|
||||||
map-underscore-to-camel-case: true
|
|
||||||
cache-enabled: false
|
|
||||||
call-setters-on-nulls: true
|
|
||||||
jdbc-type-for-null: 'null'
|
|
||||||
|
|
||||||
|
|
||||||
lz:
|
|
||||||
redis:
|
|
||||||
open: false
|
|
||||||
shiro:
|
|
||||||
redis: false
|
|
||||||
# APP模块,是通过jwt认证的,如果要使用APP模块,则需要修改【加密秘钥】
|
|
||||||
jwt:
|
|
||||||
# 加密秘钥
|
|
||||||
secret: f4e2e52034348f86b67cde581c0f9eb5[www.lz.io]
|
|
||||||
# token有效时长,7天,单位秒
|
|
||||||
expire: 604800
|
|
||||||
header: token
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
====================================================================================================================
|
|
||||||
|
|
||||||
欢迎使用 霖梓 员工数字化管理平台
|
|
||||||
|
|
||||||
====================================================================================================================
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user