springboot
张润红
这个作者很懒,什么都没留下…
展开
-
SpringBoot集成Quartz+数据库存储
文章目录1、spring整合quartz2、quartz使用的各种案例读取数据库中表达式启动定时任务1(每5s执行)定时任务中携带参数更改定时任务规则界面版定时任务管理1、spring整合quartz进入quartz的官网http://www.quartz-scheduler.org/,点击Downloads,下载后在目录\docs\dbTables下有常用数据库创建quartz表的脚本,例...原创 2019-11-17 14:51:19 · 1006 阅读 · 0 评论 -
springboot对JPA的支持
文章目录1、springboot之jpa支持2、jpa增删改查bootstrap界面版1、springboot之jpa支持首先导入需要的pom依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-...原创 2019-11-14 16:13:30 · 196 阅读 · 0 评论 -
springboot整合mybatis,pagehelper
文章目录1、springboot配置数据库连接池druid2、springboot整合mybatis3、springboot整合pagehelper1、springboot配置数据库连接池druid新建好一个项目后首先导入druid需要的pom依赖:<dependency> <groupId>com.alibaba</groupId>...原创 2019-11-09 17:42:14 · 1175 阅读 · 0 评论 -
springboot模板
文章目录1、模板简单介绍2、thymeleaf模板3、Freemarker模板1、模板简单介绍Thymeleaf是一个流行的模板引擎,该模板引擎采用Java语言开发;模板引擎是一个技术名词,是跨领域跨平台的概念,在Java语言体系下有模板引擎,在C#、PHP语言体系下也有模板引擎,在JavaScript中也会用到模板引擎技术;Java生态下的模板引擎有 Thymeleaf 、Freemak...原创 2019-11-08 20:24:37 · 928 阅读 · 0 评论 -
springboot入门
文章目录1、Springboot入门SpringBoot是什么?使用Idea配置SpringBoot项目案例2、Springboot配置文件介绍内置属性自定义属性属性封装类1、Springboot入门SpringBoot是什么?Spring Boot它本身并不提供Spring框架的核心特性以及扩展功能,只是用于快速、敏捷地开发新一代基于Spring框架的应用程序。也就是说,它并不是用来替代S...原创 2019-11-07 19:17:50 · 601 阅读 · 0 评论