在我们的计算机中,我们进入系统会经历bios自检,无误之后则会进入windows系统,在bios自检的界面可以看到关于这个电脑的cpu信息,bios信息等,这个自检的界面叫做bios post界面,一般我们使用的电脑都是隐藏了这个界面,需要查看的话只需再BIOS界面点击boot,将quite boo ...
分类:
移动开发 时间:
2020-07-01 20:36:30
阅读次数:
125
3.1 添加文件 当前版本的 uboot 中肯定是已经没有 S3C24x0 这种老芯片了,我们需要找一份稍为 old 一点的 u-boot 将 s3c24x0 有关的文件都添加进来。 文件或目录 作用 ./arch/arm/cpu/arm920t/s3c24x0 s3c24x0 芯片相关的启动代码 ...
分类:
其他好文 时间:
2020-07-01 20:16:47
阅读次数:
88
在前面搭建的Web应用基础上,开启Spring Boot默认支持的缓存,体验Spring Boot默认缓存的使用效果 (1)使用@EnableCaching注解开启基于注解的缓存支持 ```java @EnableCaching // 开启Spring Boot基于注解的缓存管理支持 @Spring ...
分类:
其他好文 时间:
2020-07-01 19:52:06
阅读次数:
41
Spring Boot has taken Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. Sp ...
分类:
数据库 时间:
2020-07-01 18:40:39
阅读次数:
64
1.首先判断自己的Dao和mapper的对应关系,注意要一一对应的。 2.配置信息出现问题,注意配置信息填写: 3.记住要细心细心,细心,重要的事情说三遍。 ...
分类:
编程语言 时间:
2020-07-01 15:58:45
阅读次数:
71
No provider available for the service seckill.com.seckilldubbo.service.UserService from the url zookeeper://127.0.0.1:2181/org.apache.dubbo.registry.R ...
分类:
编程语言 时间:
2020-07-01 12:43:20
阅读次数:
113
定义一个 SqlIntercepor 类 import com.culturalCenter.placeManage.globalConfig.Interface.InterceptAnnotation; import org.apache.ibatis.executor.statement.Sta ...
分类:
数据库 时间:
2020-07-01 12:25:57
阅读次数:
153
例如得到根目录下所有目录或文件的占用空间大小,并且想要排除名字中包含 proc 的文件或目录,可以使用如下命令du -sh /* --exclude="proc"或使用 模糊匹配 都行du -sh /* --exclude="*proc*" 扩展内容,想要排除多个文件或文件夹,且只想看到空间大于 G ...
分类:
系统相关 时间:
2020-07-01 09:18:06
阅读次数:
90
1、pom文件添加: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>tru ...
分类:
编程语言 时间:
2020-06-30 23:01:10
阅读次数:
107
spring boot中jar包方式运行主要依赖于,打包后在jar归档文件根目录的org.springfreamwork.boot.loader.JarLauncher类中执行main方法。 JarLauncher是其中的一个启动引导类,除此以外还有warLauncher,但我们不做过多探讨; 说说 ...
分类:
编程语言 时间:
2020-06-30 22:22:03
阅读次数:
79