# springboot **Repository Path**: zero365/springboot ## Basic Information - **Project Name**: springboot - **Description**: springboot基础使用,完整展示使用内嵌数据库,数据库初始化, 静态资源,模板,profile,jpa打造一个简单可执行jar的web程序。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2016-01-28 - **Last Updated**: 2021-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### spring-boot 工程download下来,运行该工程,有三种方式. - 直接运行 `Application`类 - gradle bootRun - gradle 打包后, java -jar bulid/libs/sprinboot-0.1.jar 打开浏览器,运行[http://localhost:9000/dev/springboot/](http://localhost:9000/dev/springboot/) 就能看到效果了。 系统使用了springboot的特性有: 1. profile特性, application-{profile}中的配置会覆盖默认配置文件的属性 2. 内嵌数据库支持,自动导入import.sql 3. 静态文件演示 4. freemarker模板演示 5. spring-data-jpa audit 自动添加创建时间,更新时间 示例使用了h2内嵌数据库,系统初始化时自动导入import.sql,添加数据。