├── src
├── main
│ ├── resources
│ │ ├── dashboard.json
│ │ ├── templates
│ │ │ ├── 403.html
│ │ │ ├── mail
│ │ │ │ └── emailTemplate.html
│ │ │ ├── download.html
│ │ │ ├── index.html
│ │ │ └── login.html
│ │ ├── db
│ │ │ └── migration
│ │ │ │ ├── V1__init.sql
│ │ │ │ └── V2__init_tables.sql
│ │ ├── properties
│ │ │ ├── global.properties
│ │ │ ├── release
│ │ │ │ ├── global.properties
│ │ │ │ └── log.properties
│ │ │ ├── quartz.properties
│ │ │ └── log.properties
│ │ ├── static
│ │ │ └── project
│ │ │ │ ├── html
│ │ │ │ ├── demo.html
│ │ │ │ ├── demo
│ │ │ │ │ ├── bottom-sheet.html
│ │ │ │ │ ├── dashboard.html
│ │ │ │ │ ├── metric.html
│ │ │ │ │ ├── sidenav
│ │ │ │ │ │ ├── sidenav.html
│ │ │ │ │ │ └── sidenav-info.html
│ │ │ │ │ ├── file.html
│ │ │ │ │ ├── notification.html
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── drag.html
│ │ │ │ │ ├── information.html
│ │ │ │ │ ├── tree.html
│ │ │ │ │ ├── stepper.html
│ │ │ │ │ ├── form.html
│ │ │ │ │ ├── choose.html
│ │ │ │ │ ├── dialog-form.html
│ │ │ │ │ └── table.html
│ │ │ │ └── switch-source.html
│ │ │ │ ├── css
│ │ │ │ └── project-style.css
│ │ │ │ └── js
│ │ │ │ └── app.js
│ │ ├── application.properties
│ │ ├── generatorConfig.xml
│ │ ├── permission.json
│ │ ├── logback.xml
│ │ └── menu.json
│ └── java
│ │ └── com
│ │ └── fit2cloud
│ │ └── demo
│ │ ├── common
│ │ └── constants
│ │ │ └── PermissionConstants.java
│ │ ├── job
│ │ └── SyncDemo.java
│ │ ├── dao
│ │ ├── optional
│ │ │ └── OptionalDemoMapper.java
│ │ └── primary
│ │ │ ├── DemoMapper.java
│ │ │ └── DemoMapper.xml
│ │ ├── init
│ │ ├── CustomRunner.java
│ │ └── ListenStartedEvent.java
│ │ ├── config
│ │ ├── CommonConfig.java
│ │ ├── CustomDBEncryptConfig.java
│ │ ├── ShiroConfig.java
│ │ ├── OptionalMybatisConfig.java
│ │ └── MybatisConfig.java
│ │ ├── Application.java
│ │ ├── controller
│ │ ├── DemoController.java
│ │ ├── IndexController.java
│ │ └── LoginController.java
│ │ └── model
│ │ ├── Demo.java
│ │ └── DemoExample.java
└── test
│ └── java
│ └── com
│ └── fit2cloud
│ └── demo
│ ├── ApplicationTests.java
│ └── MultiDataSourceTest.java
├── service.ico
├── service.inf
├── .gitignore
├── Dockerfile
├── docker-compose.yml
├── README.md
└── pom.xml
/src/main/resources/dashboard.json:
--------------------------------------------------------------------------------
1 | []
--------------------------------------------------------------------------------
/src/main/resources/templates/403.html:
--------------------------------------------------------------------------------
1 | 无权限,哈哈哈
--------------------------------------------------------------------------------
/src/main/resources/db/migration/V1__init.sql:
--------------------------------------------------------------------------------
1 | select database();
--------------------------------------------------------------------------------
/src/main/resources/properties/global.properties:
--------------------------------------------------------------------------------
1 | run.mode=local
--------------------------------------------------------------------------------
/src/main/resources/properties/release/global.properties:
--------------------------------------------------------------------------------
1 | run.mode=release
--------------------------------------------------------------------------------
/src/main/resources/static/project/html/demo.html:
--------------------------------------------------------------------------------
1 |
{{item.name}}
17 |{{item.name}}
29 |