# spring-boot-framework-core **Repository Path**: yhz61010/spring-boot-framework-core ## Basic Information - **Project Name**: spring-boot-framework-core - **Description**: Spring boot Web Framework Core - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-03-23 - **Last Updated**: 2021-10-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spring-boot-framework-core Spring boot Web Framework Core # Dependencies ### You need add these dependencies to your project. ``` org.springframework.boot spring-boot-starter-web org.projectlombok lombok true org.springframework.boot spring-boot-starter-security org.springframework spring-jdbc commons-io commons-io 2.6 org.apache.commons commons-lang3 org.apache.commons commons-text 1.3 joda-time joda-time commons-beanutils commons-beanutils 1.9.3 org.mybatis mybatis 3.4.6 com.fasterxml.jackson.dataformat jackson-dataformat-csv org.springframework.boot spring-boot-configuration-processor true ``` # FAQ ### How to use Aliyun Maven Mirror If you are using Mac OS, do it as following: ``` $ vim /usr/local/Cellar/maven/3.5.2/libexec/conf/settings.xml ``` Add following codes into ``: ``` nexus-aliyun central Nexus aliyun http://maven.aliyun.com/nexus/content/groups/public ``` ### How to upload to Maven Central 1. Upgrade `Version` in pom.xml 2. In your project folder, run following command: ``` $ mvn clean deploy -Dgpg.passphrase= ``` Check [this post](http://www.ho1ho.com/2018/03/27/2018-03-27-How-To-Upload-Your-Jar-To-Maven-Central/) for more information. ### How to backup database automatically Every day in 02:00AM backup database automatically. ``` $ crontab -e 0 2 * * * /data/backup/mysql_db_auto_backup.sh $ crontab -l ```