Controller之间的跳转分为 转发和重定向
redict:浏览器地址不会变,视为一次请求
forward:浏览器地址会变,视为再次请求
需要跳转到其他Controller 方法中 只需要在return 字符串中 加上 redict:
@RequestMapping("/libraryCard/creatCard")
String cre...
说是 SpringCloud 加入 thymleaf前端页面
不如说是 SpringBoot 加入 thymleaf前端页面,因为都在SpringBoot框架之中
加入的方法:
在父级POM文件中加入thymleaf依赖
<dependency>
<groupId>org.springframework.boot<...
依赖中写好了自动装配
在SpringBoot中已经写好了
SpringBoot在启动时会读取 SpringBoot-autoConfigure 这个jar包
jar包中有个 spring.factories 这里面有很多的配置文件,配置也会随着版本升级增多
这里面都是整合时需要自动装配的对象,他不会全都自动创建对象占内存,需要条件
条件1: 依赖,如果...
转载:https://blog.csdn.net/qq_42251944/article/details/122927732
问题描述: 在SpringBoot项目中pom导入依赖,但是依赖名字或是版本号依然是红色的
解决办法: 使用filed中的 reloadAll from disk即可
springboot的静态资源是放在static文件夹中的
目录结构如下:
使用的时 idea 2022版本
解决办法
Edit Configuration 下的SpringBoot启动器的 working directory
为$MODULE_WORKING_DIR$
结果