SpringBoot2.x 整合Redis和使用Redis缓存 导入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis --> <dependency> ...
分类:
编程语言 时间:
2020-06-13 10:31:13
阅读次数:
91
1.通过maven引入相关的jar包依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> 2.配置 ...
分类:
编程语言 时间:
2020-06-13 00:49:38
阅读次数:
73
前言 前段时间完成了毕业设计课题——《基于Spring Boot + Vue的直播后台管理系统》,项目名为LBMS,主要完成了对直播平台数据的可视化展示和分级的权限管理。虽然相当顺利地通过了答辩,但是由于时间以及本人水平的不足,其实后端系统的代码还仅仅停留在“能跑就行”。因此这篇文章主要也是为了反思 ...
分类:
编程语言 时间:
2020-06-12 20:18:50
阅读次数:
75
1.查看某个主题下面的消息 bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic web_douyin_author --from-beginning 2.查看所有主题 bin/kafka-topics.sh ...
分类:
其他好文 时间:
2020-06-12 20:03:06
阅读次数:
55
一、准备 pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <!-- mybatis的启动器 - ...
分类:
编程语言 时间:
2020-06-12 17:35:25
阅读次数:
66
Error starting Tomcat context. Exception: org.springframework.beans.factory.BeanCreationException. Message: Error creating bean with name 'org.apache. ...
分类:
编程语言 时间:
2020-06-12 14:33:12
阅读次数:
127
今天用springboot写了个webservice的接口 启动项目后报错class not found EmbeddedServletContainerAutoConfiguration 然后看了下pom.xml文件中的依赖如下: <parent> <groupId>org.springframe ...
分类:
编程语言 时间:
2020-06-12 14:11:19
阅读次数:
252
.1 l mfgtool 烧写镜像 烧写镜像 开发板出厂前默认已经烧写了镜像,如果用户需要重新烧写镜像,可以参考本章。 NXP 官方提供了 Windows 的上位机烧写工具 mfgtool,迅为电子在此基础上做了修改,使烧写更加方便,同时也支持烧写 linux 系统和裸机镜像,烧写工具保存在开发板光 ...
分类:
其他好文 时间:
2020-06-12 12:35:44
阅读次数:
56
搭建一个Spring Boot项目Hello World 1)从官网搭建项目: 1、官网地址:https://spring.io/projects/spring-boot 2、点击此处进入https://start.spring.io/:配置页面 3、配置如下:并点击generate 4、将生成的压 ...
分类:
编程语言 时间:
2020-06-12 10:53:34
阅读次数:
76
今天开机就提示BOOT分区空间不足了。 网上度娘了一下。把过程记录了下来。以防忘记。 首先使用命令查看当前内核 uname -r 显示:5.3.0-59-generic 接下来就是要把多余的已经安装过的内核删除了。 下面看一下系统里已经安装的内核版本: dpkg --get-selections | ...
分类:
系统相关 时间:
2020-06-11 22:05:30
阅读次数:
113