目录
2.2:通过HandlerExceptionResovler接口实现全局异常
2.3;使用@ControllerAdvice+@ExceptionHandler实现全局异常
1.1.1返回List
1.1.2返回List
1.1.3返回T
1.1.4返回Map
1.1.5返回混合
1.1.6返回JSON字符串
com.fasterxml.jackson.core
jackson-databind
2.9.3
com.fasterxml.jackson.core
jackson-core
2.9.3
com.fasterxml.jackson.core
jackson-annotations
2.9.3
clazzBiz:
- package com.xbb.ssm.biz;
-
- import com.xbb.ssm.model.Clazz;
- import com.xbb.ssm.util.PageBean;
-
- import java.util.List;
- import java.util.Map;
-
- public interface ClassBiz {
- 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.xbb.ssm.biz.impl;
-
- import com.xbb.ssm.biz.ClassBiz;
- import com.xbb.ssm.mapper.ClazzMapper;
- import com.xbb.ssm.model.Clazz;
- import com.xbb.ssm.util.PageBean;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
-
- import java.util.List;
- import java.util.Map;
-
- /**
- * @author冰冰
- * @create 2022-08-17 19:29
- */
- @Service
- public class ClazzBizImpl implements ClassBiz {
- @Autowired
- private ClazzMapper clazzMapper;
-
- @Override
- public int deleteByPrimaryKey(Integer cid) {
- return clazzMapper.deleteByPrimaryKey(cid);
- }
-
- @Override
- public int insert(Clazz record) {
- return clazzMapper.insert(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);
- }
-
- }
ClazzMapper.java:
- package com.xbb.ssm.mapper;
-
- import com.xbb.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);
- }
ClazzMapper.xml:
- "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.xbb.ssm.mapper.ClazzMapper" >
- <resultMap id="BaseResultMap" type="com.xbb.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>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from t_struts_class
- where cid = #{cid,jdbcType=INTEGER}
- delete>
-
-
- <select id="listPager" resultType="com.xbb.ssm.model.Clazz" parameterType="com.xbb.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>
-
-
-
- <select id="listMapPager" resultType="java.util.Map" parameterType="com.xbb.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>
-
-
-
- <insert id="insert" parameterType="com.xbb.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.xbb.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.xbb.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.xbb.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>
JsonController:
- package com.xbb.ssm.web;
-
- import com.xbb.ssm.biz.ClazzBiz;
- import com.xbb.ssm.model.Clazz;
- import com.xbb.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;
-
-
- @Controller
- @RequestMapping("/clz/json")
- public class JsonController {
- @Autowired
- private ClazzBiz clazzBiz;
-
- @ResponseBody
- @RequestMapping("/clzEdit")
- public String clzEdit(){
- System.out.println("JsonController.list");
- return "clzEdit";
- }
-
- // list
- @ResponseBody
- @RequestMapping("/list")
- public List
list(HttpServletRequest request,Clazz clazz){ - // System.out.println("JsonController.list");
- PageBean pageBean=new PageBean();
- pageBean.setRequest(request);
- // [{},{}]
- return this.clazzBiz.listPager(clazz,pageBean);
- }
-
- // list
- @ResponseBody
- @RequestMapping("/listMap")
- public List
- // System.out.println("JsonController.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){
- // System.out.println("JsonController.list");
- PageBean pageBean=new PageBean();
- pageBean.setRequest(request);
- // {}
- return this.clazzBiz.listMapPager(clazz,pageBean).get(0);
- }
-
- // T
- @ResponseBody
- @RequestMapping("/load")
- public Clazz load(HttpServletRequest request, Clazz clazz){
- // http://localhost:8080/clz/json/load?cid=2
- // System.out.println("JsonController.list");
- PageBean pageBean=new PageBean();
- pageBean.setRequest(request);
- // {}
- return this.clazzBiz.listPager(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;
- // return this.clazzBiz.listPager(clazz,pageBean).get(0);
- }
- }
-
index.jsp:
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2022/8/22
- Time: 16:50
- 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:
配置文件:
- <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>
-
测试类:
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2022/8/22
- Time: 17:17
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Titletitle>
- head>
- <body>
- ${ex}
- body>
- html>
-
返回list对象:
GlobalException:
- package com.xbb.ssm.exception;
- /**
- * @author冰冰
- * @create 2022-08-23 20:33
- */
- public class GlobalException extends RuntimeException{
-
- public GlobalException() {
- super();
- }
-
- public GlobalException(String message) {
- super(message);
- }
-
- public GlobalException(String message, Throwable cause) {
- super(message, cause);
- }
-
- public GlobalException(Throwable cause) {
- super(cause);
- }
-
- protected GlobalException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
- super(message, cause, enableSuppression, writableStackTrace);
- }
- }
-
GlobalExceptionHandler:
- package com.xbb.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 冰冰
- * @create 2022-08-23 20:50
- */
- @Component
- public class GlobalExceptionHandler implements HandlerExceptionResolver {
-
- @Override
- public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) {
- ModelAndView mv=new ModelAndView();
- mv.setViewName("error");
- if(e instanceof GlobalException){
- GlobalException globalException = (GlobalException) e;
- mv.addObject("ex",globalException);
- mv.addObject("msg","全局异常");
- }else if(e instanceof RuntimeException){
- RuntimeException runtimeException = (RuntimeException) e;
- mv.addObject("ex",runtimeException.getMessage());
- mv.addObject("msg","运行时异常");
- }
- return mv;
- }
- }
-
GlobalExceptionHandler:
- package com.xbb.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 冰冰
- * @create 2022-08-23 21:29
- */
- @Component
- public class GlobalExceptionHandler implements HandlerExceptionResolver {
-
- @Override
- public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) {
- ModelAndView mv=new ModelAndView();
- mv.setViewName("error");
- if(e instanceof GlobalException){
- GlobalException globalException = (GlobalException) e;
- mv.addObject("ex",globalException);
- mv.addObject("msg","全局异常");
- }else if(e instanceof RuntimeException){
- RuntimeException runtimeException = (RuntimeException) e;
- mv.addObject("ex",runtimeException.getMessage());
- mv.addObject("msg","运行时异常");
- }
- return mv;
- }
- }
-
- package com.xbb.ssm.exception;
-
- import org.springframework.web.bind.annotation.ControllerAdvice;
- import org.springframework.web.bind.annotation.ExceptionHandler;
- import org.springframework.web.servlet.ModelAndView;
-
- /**
- * @author 冰冰
- * @create 2022-08-23 21:50
- */
- @ControllerAdvice
- public class GlobalExceptionResolver {
- @ExceptionHandler
- public ModelAndView handler(Exception e){
- ModelAndView mv = new ModelAndView();
- mv.setViewName("error");
- if(e instanceof GlobalException){
- GlobalException globalException = (GlobalException) e;
- mv.addObject("ex",globalException.getMessage());
- mv.addObject("msg","全局异常");
- }else if(e instanceof RuntimeException){
- RuntimeException runtimeException = (RuntimeException) e;
- mv.addObject("ex",runtimeException.getMessage());
- mv.addObject("msg","运行时异常..");
- }
- return mv;
- }
- }
-
- package com.xbb.ssm.exception;
-
- import org.springframework.web.bind.annotation.ExceptionHandler;
- import org.springframework.web.bind.annotation.RestControllerAdvice;
-
- import java.util.HashMap;
- import java.util.Map;
-
- /**
- * @author 冰冰
- * @create 2022-08-23 21:55
- */
- @RestControllerAdvice
- public class GlobalExceptionJsonResolver {
- @ExceptionHandler
- public Map handler(Exception e){
- Map map = new HashMap();
- if(e instanceof GlobalException){
- GlobalException globalException = (GlobalException) e;
- map.put("ex",globalException.getMessage());
- map.put("msg","全局异常");
- }else if(e instanceof RuntimeException){
- RuntimeException runtimeException = (RuntimeException) e;
- map.put("ex",runtimeException.getMessage());
- map.put("msg","运行时异常");
- }
- return map;
- }
- }
-