安装 教程,https://www.graphql-java.com/tutorials/getting-started-with-spring-boot/ ...
分类:
其他好文 时间:
2021-06-28 20:30:41
阅读次数:
0
对某一个变量感兴趣的话,在启动调试之后,直接对该变量“添加监视”,在调试窗口中即可看到该变量的变化; 查看指针指向的值 \[ 调试\to 窗口\to 内存\to 内存1 \] 拷贝指针的值,将指针的值复制到“内存1”的地址文本框中,显示的值默认为十六进制。 程序调试快捷键总结 Ctrl + F5直接 ...
分类:
其他好文 时间:
2021-06-28 20:28:49
阅读次数:
0
##Spring Security注意事项 权限优先级: 在SecurityConfig中configure(HttpSecurity http)方法中,如下代码 http.authorizeRequests() .antMatchers("/admin/**").hasRole("admin") ...
分类:
编程语言 时间:
2021-06-28 20:23:02
阅读次数:
0
快照配置 # 注释掉“save”这一行配置项就可以让保存数据库功能失效 # 设置sedis进行数据库镜像的频率。 # 900秒(15分钟)内至少1个key值改变(则进行数据库保存--持久化) # 300秒(5分钟)内至少10个key值改变(则进行数据库保存--持久化) # 60秒(1分钟)内至少10 ...
分类:
其他好文 时间:
2021-06-28 20:22:45
阅读次数:
0
一、简介 基于matlab计步 二、源代码 %对原始观测得到的数据进行获取 clc, clear; %加速度数组 accspe_data = []; time_record = []; fid=fopen('sensor_normal.txt', 'r', 'n', 'utf-8'); %初始赋值使 ...
分类:
其他好文 时间:
2021-06-28 20:19:46
阅读次数:
0
Protobuf 介绍 Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but sm ...
分类:
Web程序 时间:
2021-06-28 20:17:44
阅读次数:
0
1、镜像构建过程 包含Dockerfile目录的所有内容称为上下文,上下文通过docker build命令传入到Docker daemon后,便开始按照Dockerfile中的内容一层层构造镜像。 为了提高镜像构建的速度,Docker daemon会缓存构建过程中的中间镜像。当从一个已在缓存中的基础 ...
分类:
其他好文 时间:
2021-06-28 20:12:04
阅读次数:
0
一、 在主程序中配置 @SpringBootApplication 相当于: //@SpringBootConfiguration //@EnableAutoConfiguration //@ComponentScan("spring.main.spring"), //SpringBootAppli ...
分类:
编程语言 时间:
2021-06-28 19:53:22
阅读次数:
0
1.配置 pom <shiro.version>1.4.0</shiro.version> <!--shiro start--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> ...
分类:
编程语言 时间:
2021-06-28 19:50:46
阅读次数:
0
1、总结ip分类以及每个分类可以分配的IP数量 A类: 0 0000000 - 0 1111111.X.Y.Z : 0-127.X.Y.Z 网络ID位是最高8位,主机ID是24位低位 网络数:126=2^7(可变是的网络ID位数)-2 每个网络中的主机数:2^24-2=16777214 默认子网掩码 ...
分类:
其他好文 时间:
2021-06-28 19:50:12
阅读次数:
0