目录
2、通过HandlerExceptionResovler接口实现全局异常
3、使用@ControllerAdvice+@ExceptionHandler实现全局异常
{}->json对象
[]->json数组
{
msg:"",
code:200,
data:[]
}->json混合对象
1.导入pom依赖 Jackson
2.配置SpringMVC.xml 配置适配器
作用是做json数据转换的
3.使用注解@responseBody 能够将任何的数据转成json对象
- <dependency>
- <groupId>com.fasterxml.jackson.coregroupId>
- <artifactId>jackson-databindartifactId>
- <version>2.9.3version>
- dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.coregroupId>
- <artifactId>jackson-coreartifactId>
- <version>2.9.3version>
- dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.coregroupId>
- <artifactId>jackson-annotationsartifactId>
- <version>2.9.3version>
- dependency>
- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
- <property name="messageConverters">
- <list>
- <ref bean="mappingJackson2HttpMessageConverter"/>
- list>
- property>
- bean>
- <bean id="mappingJackson2HttpMessageConverter"
- class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
-
- <property name="supportedMediaTypes">
- <list>
- <value>text/html;charset=UTF-8value>
- <value>text/json;charset=UTF-8value>
- <value>application/json;charset=UTF-8value>
- list>
- property>
- bean>
ClazzBiz
- package com.zking.ssm.biz;
-
- import com.zking.ssm.model.Clazz;
- import com.zking.ssm.util.PageBean;
-
- import java.util.List;
- import java.util.Map;
-
- public interface ClazzBiz {
- int deleteByPrimaryKey(Integer cid);
-
- int insert(Clazz record);
-
- int insertSelective(Clazz record);
-
- Clazz selectByPrimaryKey(Integer cid);
-
- int updateByPrimaryKeySelective(Clazz record);
-
- int updateByPrimaryKey(Clazz record);
-
- List
listPager(Clazz clazz, PageBean pageBean); -
- List
-
- }
ClazzBizImpl
- package com.zking.ssm.impl;
-
- import com.zking.ssm.biz.ClazzBiz;
- import com.zking.ssm.mapper.ClazzMapper;
- import com.zking.ssm.model.Clazz;
- import com.zking.ssm.util.PageBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
-
- import java.util.List;
- import java.util.Map;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-18 23:34
- */
- @Service
- public class ClassBizImpl implements ClazzBiz {
-
- @Autowired
- private ClazzMapper clazzMapper;
- @Override
- public int deleteByPrimaryKey(Integer cid) {
- return clazzMapper.deleteByPrimaryKey(cid);
- }
-
- @Override
- public int insert(Clazz record) {
- return clazzMapper.insertSelective(record);
- }
-
- @Override
- public int insertSelective(Clazz record) {
- return clazzMapper.insertSelective(record);
- }
-
- @Override
- public Clazz selectByPrimaryKey(Integer cid) {
- return clazzMapper.selectByPrimaryKey(cid);
- }
-
- @Override
- public int updateByPrimaryKeySelective(Clazz record) {
- return clazzMapper.updateByPrimaryKeySelective(record);
- }
-
- @Override
- public int updateByPrimaryKey(Clazz record) {
- return clazzMapper.updateByPrimaryKey(record);
- }
-
- @Override
- public List
listPager(Clazz clazz, PageBean pageBean) { - return clazzMapper.listPager(clazz);
- }
-
- @Override
- public List
- return clazzMapper.listMapPager(clazz);
- }
- }
- package com.zking.ssm.mapper;
-
- import com.zking.ssm.model.Clazz;
- import org.springframework.stereotype.Repository;
-
- import java.util.List;
- import java.util.Map;
-
- @Repository
- public interface ClazzMapper {
- int deleteByPrimaryKey(Integer cid);
-
- int insert(Clazz record);
-
- int insertSelective(Clazz record);
-
- Clazz selectByPrimaryKey(Integer cid);
-
- List
listPager(Clazz clazz); -
- List
-
- int updateByPrimaryKeySelective(Clazz record);
-
- int updateByPrimaryKey(Clazz record);
- }
- "1.0" encoding="UTF-8" ?>
- mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
- <mapper namespace="com.zking.ssm.mapper.ClazzMapper" >
- <resultMap id="BaseResultMap" type="com.zking.ssm.model.Clazz" >
- <constructor >
- <idArg column="cid" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="cname" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="cteacher" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="pic" jdbcType="VARCHAR" javaType="java.lang.String" />
- constructor>
- resultMap>
- <sql id="Base_Column_List" >
- cid, cname, cteacher, pic
- sql>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
- select
- <include refid="Base_Column_List" />
- from t_struts_class
- where cid = #{cid,jdbcType=INTEGER}
- select>
-
- <select id="listPager" resultType="com.zking.ssm.model.Clazz" parameterType="com.zking.ssm.model.Clazz" >
- select
- <include refid="Base_Column_List" />
- from t_struts_class
- <where>
- <if test="cname !=null and cname !='' ">
- and cname like CONCAT('%','#{cname}','%')
- if>
- <if test="cid !=null and cid !='' ">
- and cname = #{cid}
- if>
- where>
- select>
-
- <select id="listMapPager" resultType="java.util.Map" parameterType="com.zking.ssm.model.Clazz" >
- select
- <include refid="Base_Column_List" />
- from t_struts_class
- <where>
- <if test="cname != null and cname != ''">
- and cname like concat('%',#{cname},'%')
- if>
- <if test="cid != null and cid != ''">
- and cid = #{cid}
- if>
- where>
- select>
-
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from t_struts_class
- where cid = #{cid,jdbcType=INTEGER}
- delete>
- <insert id="insert" parameterType="com.zking.ssm.model.Clazz" >
- insert into t_struts_class (cid, cname, cteacher,
- pic)
- values (#{cid,jdbcType=INTEGER}, #{cname,jdbcType=VARCHAR}, #{cteacher,jdbcType=VARCHAR},
- #{pic,jdbcType=VARCHAR})
- insert>
- <insert id="insertSelective" parameterType="com.zking.ssm.model.Clazz" >
- insert into t_struts_class
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="cid != null" >
- cid,
- if>
- <if test="cname != null" >
- cname,
- if>
- <if test="cteacher != null" >
- cteacher,
- if>
- <if test="pic != null" >
- pic,
- if>
- trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="cid != null" >
- #{cid,jdbcType=INTEGER},
- if>
- <if test="cname != null" >
- #{cname,jdbcType=VARCHAR},
- if>
- <if test="cteacher != null" >
- #{cteacher,jdbcType=VARCHAR},
- if>
- <if test="pic != null" >
- #{pic,jdbcType=VARCHAR},
- if>
- trim>
- insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.zking.ssm.model.Clazz" >
- update t_struts_class
- <set >
- <if test="cname != null" >
- cname = #{cname,jdbcType=VARCHAR},
- if>
- <if test="cteacher != null" >
- cteacher = #{cteacher,jdbcType=VARCHAR},
- if>
- <if test="pic != null" >
- pic = #{pic,jdbcType=VARCHAR},
- if>
- set>
- where cid = #{cid,jdbcType=INTEGER}
- update>
- <update id="updateByPrimaryKey" parameterType="com.zking.ssm.model.Clazz" >
- update t_struts_class
- set cname = #{cname,jdbcType=VARCHAR},
- cteacher = #{cteacher,jdbcType=VARCHAR},
- pic = #{pic,jdbcType=VARCHAR}
- where cid = #{cid,jdbcType=INTEGER}
- update>
- mapper>
- package com.zking.ssm.controller;
-
- import com.zking.ssm.biz.ClazzBiz;
- import com.zking.ssm.model.Clazz;
- import com.zking.ssm.util.PageBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
-
- import javax.servlet.http.HttpServletRequest;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-22 16:56
- */
- @Controller
- @RequestMapping("/clz/json")
- public class JsonController {
-
- @Autowired
- private ClazzBiz clazzBiz;
-
- @ResponseBody
- @RequestMapping("/clzEdit")
- public String clzEdit(){
- System.out.println("JsonController.clzEdit");
- return "clzEdit";
- }
-
- //List
- @ResponseBody
- @RequestMapping("/list")
- public List
list(HttpServletRequest request,Clazz clazz){ - PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- // [{},{}]
- return this.clazzBiz.listPager(clazz,pageBean);
- }
- // List
- @ResponseBody
- @RequestMapping("/listMap")
- public List
- PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- // [{},{}]
- return this.clazzBiz.listMapPager(clazz,pageBean);
- }
-
- // Map
- @ResponseBody
- @RequestMapping("/map")
- public Map map(HttpServletRequest request, Clazz clazz){
- PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- // {}
- return this.clazzBiz.listMapPager(clazz,pageBean).get(0);
- }
- // T
- @ResponseBody
- @RequestMapping("/load")
- public Map load(HttpServletRequest request, Clazz clazz){
- // http//localhost:8080/clz/json/load?cid=2
- PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- // {}
- return this.clazzBiz.listMapPager(clazz,pageBean).get(0);
- }
-
- // {
- // msg:"",
- // code:200,
- // data:[]
- // pageBean:{}
- // }
- @ResponseBody
- @RequestMapping("/hunhe")
- public Map hunhe(HttpServletRequest request, Clazz clazz){
- // http//localhost:8080/clz/json/load?cid=2
- PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- List
lst = this.clazzBiz.listPager(clazz,pageBean); - Map map = new HashMap();
- map.put("data",lst);
- map.put("pagebean",pageBean);
- return map;
- }
-
- }
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2022/8/23
- Time: 19:45
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>测试json数据返回title>
- head>
- <body>
- <a href="${pageContext.request.contextPath}/clz/json/list">返回list<T>对象a><hr>
- <a href="${pageContext.request.contextPath}/clz/json/listMap">返回list<Map>对象a><hr>
- <a href="${pageContext.request.contextPath}/clz/json/load?cid=1">返回T对象a><hr>
- <a href="${pageContext.request.contextPath}/clz/json/map?cid=1">返回Map对象a><hr>
- <a href="${pageContext.request.contextPath}/clz/json/hunhe">返回混合对象a><hr>
-
- body>
- html>

list

list

T

Map

混合

@ResponseBody+@Controller=@restController
SpringMVC的配置
- <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
-
- <property name="defaultErrorView" value="error"/>
-
- <property name="exceptionAttribute" value="ex"/>
-
- <property name="exceptionMappings">
- <props>
- <prop key="java.lang.RuntimeException">errorprop>
- props>
-
- property>
- bean>
-
error.jsp
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2022/8/23
- Time: 21:22
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>错误信息页面title>
- head>
- <body>
- ${ex}
- body>
- html>
list

list

先将上面SpringMVC中关于异常处理的配置取消掉
GlobalException.java
- package com.zking.ssm.exception;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-23 21:45
- */
- public class GlobalException extends RuntimeException{
-
- public GlobalException() {
- }
-
- public GlobalException(String message) {
- super(message);
- }
-
- public GlobalException(String message, Throwable cause) {
- super(message, cause);
- }
-
- public GlobalException(Throwable cause) {
- super(cause);
- }
-
- public GlobalException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
- super(message, cause, enableSuppression, writableStackTrace);
- }
- }
GlobalExceptionHandler.java
- package com.zking.ssm.exception;
-
- import org.springframework.stereotype.Component;
- import org.springframework.web.servlet.HandlerExceptionResolver;
- import org.springframework.web.servlet.ModelAndView;
-
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-23 21:48
- *
- * 处理全局异常的解析器
- */
-
- @Component
- public class GlobalHandlerExceptionResovler implements HandlerExceptionResolver {
- /**
- *
- * @param httpServletRequest
- * @param httpServletResponse
- * @param o 目标对象
- * @param e 目标对象执行,出现的异常对象
- * @return
- */
- @Override
- public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) {
- ModelAndView mv = new ModelAndView();
- mv.setViewName("error");
- if(e instanceof GlobalException){
- GlobalException exception =(GlobalException)e;
- mv.addObject("ex",null);
- mv.addObject("msg","全局异常,错误码520");
- }else if(e instanceof GlobalException) {
- GlobalException exception = (GlobalException) e;
- mv.addObject("ex", null);
- mv.addObject("msg", "运行时异常,错误码666");
- }
- return mv;
- }
- }
controller层
- @RequestMapping("/load")
- public Map load(HttpServletRequest request, Clazz clazz){
- // http//localhost:8080/clz/json/load?cid=2
- PageBean pageBean = new PageBean();
- pageBean.setRequest(request);
- if(true)
- throw new GlobalException("系统繁忙,请参考曾超sb");
- // {}
- return this.clazzBiz.listMapPager(clazz,pageBean).get(0);
- }
运行

GlobalExceptionResolver
- package com.zking.ssm.exception;
-
- import org.springframework.web.bind.annotation.ControllerAdvice;
- import org.springframework.web.bind.annotation.ExceptionHandler;
- import org.springframework.web.servlet.ModelAndView;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-23 22:56
- */
- @ControllerAdvice
- public class GlobalExceptionResolver {
- @ExceptionHandler
- public ModelAndView handler(Exception e){
- ModelAndView mv = new ModelAndView();
- mv.setViewName("error");
- if(e instanceof GlobalException){
- GlobalException exception =(GlobalException)e;
- mv.addObject("ex","系统繁忙");
- mv.addObject("msg","全局异常 GlobalExceptionResolver,错误码520");
- }else if(e instanceof GlobalException) {
- GlobalException exception = (GlobalException) e;
- mv.addObject("ex", null);
- mv.addObject("msg", "运行时异常 GlobalExceptionResolver,错误码666");
- }
- return mv;
- }
- }

GlobalExceptionResolver2
- package com.zking.ssm.exception;
-
- import org.springframework.web.bind.annotation.ControllerAdvice;
- import org.springframework.web.bind.annotation.ExceptionHandler;
- import org.springframework.web.bind.annotation.RequestAttribute;
- import org.springframework.web.bind.annotation.RestControllerAdvice;
- import org.springframework.web.servlet.ModelAndView;
-
- import java.util.HashMap;
- import java.util.Map;
-
- /**
- * @author 白未
- * @site 3185579318
- * @company xxx公司
- * @create 2022-08-23 22:56
- *
- * 当出现异常统一向前端响应错误信息的json数据
- */
- @RestControllerAdvice
- public class GlobalExceptionResolver2 {
- @ExceptionHandler
- public Map handler(Exception e){
- Map map = new HashMap();
- if(e instanceof GlobalException){
- GlobalException exception =(GlobalException)e;
- map.put("ex",exception.getMessage());
- map.put("msg","全局异常 GlobalExceptionResolver,错误码520");
- }else if(e instanceof RuntimeException) {
- RuntimeException exception = (RuntimeException) e;
- map.put("ex", exception.getMessage());
- map.put("msg", "运行时异常 GlobalExceptionResolver,错误码666");
- }
- return map;
- }
- }
