上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页
摘要: 1.事务支持 在使用]dbc作为数据库访问技术时,Spring Boot框架定义了基于jdbc的PlatformTransactionManager接口 的实现DataSourceTransactionManager,并在Spring Boot应用启动时自动进行配置。 这里Spring Boot集成 阅读全文
posted @ 2022-10-30 11:54 lwx_R 阅读(52) 评论(0) 推荐(0)
摘要: 1.什么是定时调度 在SpringBoot中有Java自带的java.util.Timer类 SpringBoot自带的Scheduled来实现,Scheduled 在Spring3.X引入,默认SpringBoot自带该功能使用起来也很简单,在启动类级别添加 @EnableScheduling注解 阅读全文
posted @ 2022-10-30 11:11 lwx_R 阅读(41) 评论(0) 推荐(0)
摘要: 1.pom.xml <!-- 单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> 2.目录结构 阅读全文
posted @ 2022-10-27 18:24 lwx_R 阅读(26) 评论(0) 推荐(0)
摘要: 1.什么是EhCache EhCache是一个比较成熟的Java缓存框架,最早从hibernate发展而来,是进程中的缓存系统 它提供了用内存,磁盘文件存储,以及分布式存储方式等多种灵活的cache管理方案,快速简单。 2.注解使用 2.1 @Cacheable 应用到读取数据的方法,即可缓存的方法 阅读全文
posted @ 2022-10-27 18:21 lwx_R 阅读(743) 评论(0) 推荐(0)
摘要: 1.什么是热部署 热部署,就是在应用正在运行的时候升级软件(增加业务/修改bug),却不需要重新启动应用 在项目开发过程中,常常会改动页面数据或者修改数据结构,为了显示改动效果,往往需要重启应用查看改变效果, 其实就是重新编译生成了新的Class文件,这个文件里记录着和代码等对应的各种信息,然后Cl 阅读全文
posted @ 2022-10-26 17:51 lwx_R 阅读(607) 评论(0) 推荐(0)
摘要: 1.pom.xml配置 <!-- mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1. 阅读全文
posted @ 2022-10-25 18:10 lwx_R 阅读(34) 评论(0) 推荐(0)
摘要: swagger2 用来生产Api文档 1.pom.xml配置 <!-- swagger2 Api文档--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <versio 阅读全文
posted @ 2022-10-25 17:58 lwx_R 阅读(47) 评论(0) 推荐(0)
摘要: 1.打包为Jar 配置操作为clean compile package -Dmaven.test.skip=true debug 操作 在target目录下 2.打包为war包 2.1 pom修改 添加packaging <groupId>org.example</groupId> <artifac 阅读全文
posted @ 2022-10-24 19:59 lwx_R 阅读(57) 评论(0) 推荐(0)
摘要: 1.在ResourceProperties类下 private static final String[] CLASSPATH_RESOURCE_LOCATIONS = new String[]{"classpath:/META-INF/resources/", "classpath:/resour 阅读全文
posted @ 2022-10-24 18:51 lwx_R 阅读(24) 评论(0) 推荐(0)
摘要: 1.在github新建仓库 2.连接 3.删除仓库 setting里面最底下 输入仓库名称(加粗的部分)即可 阅读全文
posted @ 2022-10-22 10:30 lwx_R 阅读(39) 评论(0) 推荐(0)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页