初始状态查看vue版本:vue -V,显示2.9.6,再进行创建vue项目时出现以下情况:
以上翻译:vue create是Vue CLI 3的唯一命令,而你正在使用Vue CLI 2.9.6。
你可能想运行以下程序来升级到Vue CLI 3:
npm uninstall -g vue-cli
np...
在cmd命令提示符窗口无法切换盘符?
因为切换盘符不需要使用cd
直接盘符加冒号就可以切换盘符
转载:https://blog.csdn.net/qq_44696483/article/details/119701333
题外话: 之前安装node 操作时有warm警告,是因为cmd没有用管理员权限打开
替换npm仓库地址为淘宝镜像地址(推荐) 命令:
npm config set registry https://registry.npm.taobao.org
查看是否更改成功:
npm config get registry
,以后安装时,依然用npm命令,但是实际是从淘...
Controller之间的跳转分为 转发和重定向
redict:浏览器地址不会变,视为一次请求
forward:浏览器地址会变,视为再次请求
需要跳转到其他Controller 方法中 只需要在return 字符串中 加上 redict:
@RequestMapping("/libraryCard/creatCard")
String cre...
引用:https://blog.csdn.net/beijixingcd/article/details/94380370
使用thymeleaf模板引擎 页面文件要放在resources 的 templates文件夹下
我的错误原因就是:templates拼写成了 tamplates,拼写错误导致一直报错500
其他原因,有未导入依赖等错误.Controller不能使用@RestController等等
引用: https://www.likecs.com/show-305...
在idea 中 file 选项卡 setting 中选择 file and code template
thymleaf模板代码
<html lang="ch" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
&...
说是 SpringCloud 加入 thymleaf前端页面
不如说是 SpringBoot 加入 thymleaf前端页面,因为都在SpringBoot框架之中
加入的方法:
在父级POM文件中加入thymleaf依赖
<dependency>
<groupId>org.springframework.boot<...
依赖中写好了自动装配
在SpringBoot中已经写好了
SpringBoot在启动时会读取 SpringBoot-autoConfigure 这个jar包
jar包中有个 spring.factories 这里面有很多的配置文件,配置也会随着版本升级增多
这里面都是整合时需要自动装配的对象,他不会全都自动创建对象占内存,需要条件
条件1: 依赖,如果...
把官方网址 https://start.spring.io 换成 https://start.aliyun.com