使用SpringBoot进行单元测试 依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> ...
分类:
编程语言 时间:
2020-09-24 21:18:50
阅读次数:
37
一、redis添加开机自启 1、添加服务配置文件 [root@test system]# vim /etc/systemd/system/redis-server.service 2、服务配置文件内容(前面红色字体是启动脚本,后面红色字体是配置文件);注意?? 服务文件路径要写绝对路径 [Unit] ...
分类:
编程语言 时间:
2020-09-21 11:56:43
阅读次数:
61
#配置文件 #注入静态变量 注意 类上面有:@Component注解 #使用注入的静态变量 #成功 ...
分类:
编程语言 时间:
2020-09-18 17:12:47
阅读次数:
50
第三节《spring boot开发web应用-使用传统的JDBC》中,我们使用了传统的JDBC方式连接关系型数据库,完成数据持久化操作,文章最后提到“虽然JdbcTemplate将创建连接、创建语句、关闭连接、关闭结果集和sql异常处理等做了很好的封装,但是还有待完善,所以本节内容将web项目进行改 ...
分类:
编程语言 时间:
2020-09-18 03:04:20
阅读次数:
43
pom.xml <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.13</version> </depe ...
分类:
编程语言 时间:
2020-09-18 02:53:05
阅读次数:
50
跨域可以在前端通过JSONP来解决,但是JSONP只可以发送GET请求,无法发送其他类型的请求,在RESTful风格的应用中,就显得非常鸡肋,因此我们推荐在后端通过(CORS,Cross-originresourcesharing)来解决跨域问题。https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Access_control_CORS1、通过实现W
分类:
编程语言 时间:
2020-09-18 02:51:37
阅读次数:
50
1.Spring Boot Spring Boot是一个简化Spring开发的框架。用来监护spring应用开发,约定大于配置,去繁就简,just run 就能创建一个独立的,产品级的应用。 我们在使用Spring Boot时只需要配置相应的Spring Boot就可以用所有的Spring组件,简单 ...
分类:
编程语言 时间:
2020-09-18 01:11:38
阅读次数:
49
Spring Boot @Component注解下的类 @Autowired 为null【原文】 @Component public class ComponentClass { @Autowired private JedisClient jedisClient; public static Co ...
分类:
编程语言 时间:
2020-09-18 00:55:52
阅读次数:
51
首先查看你的本地命令行中是否安装了 Docsify。 运行 docsify -v 如果显示: C:\WorkDir\Repository\cwiki-us-docs\spring-boot-docs>docsify -v 'docsify' is not recognized as an inter ...
分类:
其他好文 时间:
2020-09-17 22:24:22
阅读次数:
29
一、单个Spring Boot应用使用CorsConfig配置类,实现WebMvcConfigurer解决跨域问题 import org.springframework.context.annotation.Configuration; import org.springframework.web. ...
分类:
其他好文 时间:
2020-09-17 19:05:01
阅读次数:
35