springmvc异常处理器和拦截器
摘要:一、异常处理器 1、实现HandlerExceptionResolver接口 package com.wuxi.exceptions; import org.springframework.web.servlet.HandlerExceptionResolver; import org.spring
阅读全文
springmvc跨服务器上传文件
摘要:一、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan
阅读全文
springmvc上传文件
摘要:一、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan
阅读全文
springmvc响应类型和放行静态资源
摘要:一、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan
阅读全文
springmvc请求参数类型转换器和原生api
摘要:一、springmvc的xml配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/200
阅读全文
springmvc入门
摘要:一、文件结构 二、pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema
阅读全文
springmvc请求参数绑定
摘要:一、自动参数匹配 <form action="/login"> <input type="text" name="username"> <input type="password" name="password"> <input type="submit" value="提交"> </form> @
阅读全文