SpringMvc
SpringMvc
yuezheyue123
这个作者很懒,什么都没留下…
展开
-
SpringMvc文件的上传与下载(二)下载
// 下载文件 @RequestMapping("/downloadfile") public String downloadfile(HttpServletRequest request, HttpServletResponse response, Model model) { String realPath = request.getServletContext().getRea...原创 2019-12-30 15:00:37 · 86 阅读 · 0 评论 -
SpringMvc文件的上传与下载(一)上传
1.需要在pom.xml中添加响应的依赖 <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> <dependency> <groupId>commons-fileupload</groupId> <artifactId>...原创 2019-12-30 14:59:55 · 92 阅读 · 0 评论 -
SpringMvc拦截器的使用
1.可以实现HandlerInterceptor接口,实现里面的方法,这里不需要添加其他的注解,但是在spring-mvc.xml配置文件中需要添加配置 2.拦截器配置 3.可以添加标记 项目地址:https://gitee.com/yuexingyingxue/springMvcTest1 ...原创 2019-12-30 10:23:42 · 94 阅读 · 0 评论 -
SpringMvc常见的接受参数的形式
1.使用实体Bean,属性名和请求参数的名称要相同,适用于post ,get。 @RequestMapping("/index") public String login(User user,HttpSession session,Model model){ ...... } 2.直接将参数名放在方法中,适用于post ,get。 @RequestMapping("/index") pu...原创 2019-12-27 17:42:43 · 142 阅读 · 0 评论 -
springMvc的简单使用1
项目结构 具体流程: 1.实现了利用springMvc框架,访问 http://localhost:8080/index后,使用@RequestMapping(“/index”)进行拦截 2.通过IOC注入对象teacherService,在TeacherService中是通过iOC注入的对象TeacherDao进行操作数据库 3.若想操作数据库,必须设置数据库操作的映...原创 2019-12-25 14:26:11 · 101 阅读 · 0 评论