昏睡棒球

文章
6
资源
0
加入时间
3年1月12天

spring boot 引入 thymeleaf 报Cannot resolve MVC View ‘index‘ 。

spring boot 引入 thymeleaf 报Cannot resolve MVC View 'index' 。原因是 相关thymeleaf 相关jar包没有依赖上。工具问题# 默认路径spring.thymeleaf.prefix=classpath:/templates/# 后缀spring.thymeleaf.suffix=.html# 模板格式spring.thymeleaf.mode=HTML5spring.thymeleaf.encoding=UTF-8sp.

89.格雷编码

题目描述格雷编码是一个二进制数字系统,在该系统中,两个连续的数值仅有一个位数的差异。给定一个代表编码总位数的非负整数 n,打印其格雷编码序列。格雷编码序列必须以 0 开头。示例 1:输入: 2输出: [0,1,3,2]解释:00 - 001 - 111 - 310 - 2对于给定的 n,其格雷编码序列并不唯一。例如,[0,2,3,1] 也是一个有效的格雷编码序列。00 -...