2020年11月25日
摘要: 1.创建拦截器类实现HandlerInterceptor //该拦截器类必须实现HandlerInterceptor接口,手动覆盖其... 阅读全文
posted @ 2020-11-25 18:27 凸凸大军的一员 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1使用范围 过滤器:是servlet规范中的一部分,任何Java web工程都可以使用 拦截器:是SpringMVC框架自己用的,只... 阅读全文
posted @ 2020-11-25 17:57 凸凸大军的一员 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 具体代码请访问springmvc的具体操作步骤 1.导入坐标 commons-fileupload c... 阅读全文
posted @ 2020-11-25 17:41 凸凸大军的一员 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1.定义转换器类实现Converter接口 import org.springframework.core.convert.conv... 阅读全文
posted @ 2020-11-25 15:32 凸凸大军的一员 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 使用@PathVariable注解:接收请求路径中占位符的值 @RequestMapping("/report18/{userna... 阅读全文
posted @ 2020-11-25 14:19 凸凸大军的一员 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 当请求的参数名称与Controller的业务方法不一致时,就需要通过@RequestParam注解进行显示的绑定 1.value:映... 阅读全文
posted @ 2020-11-25 13:26 凸凸大军的一员 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.接上文-》springmvc获取请求参数链接 2.在web.xml配置编码过滤器 CharacterEn... 阅读全文
posted @ 2020-11-25 12:36 凸凸大军的一员 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1.配置 mapping:代表js目录下的所有文件 location:代表某个静态资源具体的文件路径 2.如果springmvc... 阅读全文
posted @ 2020-11-25 12:21 凸凸大军的一员 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1.创建User实体类 ```javapublic class User { private String username;... 阅读全文
posted @ 2020-11-25 11:13 凸凸大军的一员 阅读(164) 评论(0) 推荐(0) 编辑