上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: 1。上传 需要导入文件等依赖 <!--文件上传--> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.3</version> </d 阅读全文
posted @ 2021-02-16 13:02 枫叶像思念 阅读(350) 评论(0) 推荐(0) 编辑
摘要: public class LoginInterceptor implements HandlerInterceptor { public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Objec 阅读全文
posted @ 2021-02-16 09:01 枫叶像思念 阅读(1605) 评论(0) 推荐(0) 编辑
摘要: 1.隐藏域用法说明 1、其实它跟其他表单类型是一样的,同样具有value属性,唯一的区别是:表单隐藏域不会把这个元素显示出来,但是在提交过程中依然有效。 2、HTML采用<input>是为了显示文本数据 3、类型为hidden,是为了在显示数据的同时,不想让浏览用户看到,该数据只提供给程序员使用 4 阅读全文
posted @ 2021-02-13 22:29 枫叶像思念 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 1.jackson的使用 乱码问题解决 注解@ResponseBody直接将方法的返回值 传到当前网页上 不需要去走视图解析器 问题解决 在注解ResponseMapping那里改为这个 或者可以更懒一点 直接在配置文件中声明 <mvc:annotation-driven> <mvc:message 阅读全文
posted @ 2021-02-10 22:52 枫叶像思念 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 框架应该已经搭好了吧。没有的话参考我的这篇博客:https://www.cnblogs.com/cckong/p/14394198.html 1.回传参数 有了前面的学习,我们应该知道这三个注解的作用了吧。 controller将一个类声明为控制器。 requestMapping后面是一个后缀 表示 阅读全文
posted @ 2021-02-10 13:34 枫叶像思念 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 快排代码如下 注释写的很详细 /** * @Description: 快速排序 * @Author: cckong * @Date: 2021/1/20 */ public class QuickSort { //比较函数 因为数组是Comparable 使用多态进行调用 public static 阅读全文
posted @ 2021-02-10 12:17 枫叶像思念 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 一、回顾Servlet重定向和转发 二、SpringMVC 不使用视图解析器 和servlet方法差不多 三、使用视图解析器 视图解析器xml配置 阅读全文
posted @ 2021-02-09 23:28 枫叶像思念 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_32938957/article/details/98205901 https://blog.csdn.net/LDY1016/article/details/85112631?utm_medium=distribute.pc_relevant.no 阅读全文
posted @ 2021-02-09 23:14 枫叶像思念 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 配置这三个就可以。 controller import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annota 阅读全文
posted @ 2021-02-09 21:06 枫叶像思念 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 先看这张图看不懂没有关系。 我们使用一个小demo来了解一下执行流程。 (1)DispatcherServlet 表示前置控制器,是整个SpringMVC的控制中心。用户发出请求,DispatcherServlet接收请求并拦截请求。 我们假设请求的url为 : http://localhost:8 阅读全文
posted @ 2021-02-09 16:41 枫叶像思念 阅读(96) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页