摘要: 1、导入依赖;(jackson是因为在配置文件中添加了配置;) <!--文件上传--> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1. 阅读全文
posted @ 2021-04-16 14:39 卡卡罗特琪琪 阅读(71) 评论(0) 推荐(0) 编辑
摘要: <body> <div id="app"> <input type="text" v-model="num"/> <h1>{{name}},你真的强,有{{num}}个人为他点赞。</h1> </div> <script src="./node_modules/vue/dist/vue.js"></ 阅读全文
posted @ 2021-04-15 22:12 卡卡罗特琪琪 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 重定向我们一般都是通过用这种方式;redirect必须是方法映射路径,jsp无效 return "redirect:/user/goLogin"; 重定向带参数的话,有两种写法; 第一种: attr.addAttribute("test1", "51gjie中");//跳转地址带上test1参数 获 阅读全文
posted @ 2021-04-15 16:45 卡卡罗特琪琪 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 自定义拦截器类实现org.springframework.web.servlet.HandlerInterceptor 在applicationContext.xml添加拦截器配置 <!--拦截器配置--> <mvc:interceptors> <mvc:interceptor> <!--包含这个请 阅读全文
posted @ 2021-04-15 09:43 卡卡罗特琪琪 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1、在任意位置建一个空文件夹; 2、打开vscode,定位到刚才新建的文件夹; 点击左下角位置 弹出 3、输入npm install vue 展开刚才新建的项目 4、测试一下项目是否搭建成功; 新建一个index.html; 输入感叹号,直接回车; 就生成了html模板 新建一个vue小demo; 阅读全文
posted @ 2021-04-15 00:03 卡卡罗特琪琪 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 参考博客: https://blog.csdn.net/weixin_44271378/article/details/107659287 解决办法: 只是单纯的使用nacos作为服务的注册与发现, 不用来作为配置中心的话, 把config依赖删掉即可 既要使用nacos作为服务的注册与发现, 也要 阅读全文
posted @ 2021-04-14 20:44 卡卡罗特琪琪 阅读(4588) 评论(1) 推荐(0) 编辑
摘要: 普通版 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst 阅读全文
posted @ 2021-04-12 14:41 卡卡罗特琪琪 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 添加如下配置 <!--maven可能存在静态资源过滤问题--> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <inc 阅读全文
posted @ 2021-04-12 14:21 卡卡罗特琪琪 阅读(219) 评论(0) 推荐(0) 编辑
摘要: PS E:\develop\qianduanforfree\renren-fast-vue> npm install npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/req 阅读全文
posted @ 2021-04-12 00:41 卡卡罗特琪琪 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 最开始下方没有services标签 为了可以方便启动服务,需要显示services标签 点击任意一个服务,然后点击复制 点击apply,再点击ok,然后再右下角出现了一个窗口 点击右小角的下三角,选择第一项 然后左下角就会弹出services标签 展开服务,删除掉刚才复制的服务 成功了 阅读全文
posted @ 2021-04-11 22:16 卡卡罗特琪琪 阅读(90) 评论(0) 推荐(0) 编辑