Home > Java > javaTutorial > How to handle custom exceptions and return json in Springboot2.0

How to handle custom exceptions and return json in Springboot2.0

王林
Release: 2023-05-10 22:19:10
forward
1369 people have browsed it

1. Write a custom exception class

package cn.jfjb.crud.exception;

public class UserNotExistException extends RuntimeException {
  public UserNotExistException() {
    super("用户不存在");
  }
}
Copy after login

2. Handle self-test exceptions

package cn.jfjb.crud.handler;

import cn.jfjb.crud.exception.UserNotExistException;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.HashMap;
import java.util.Map;


@ControllerAdvice
public class MyExceptionHandler {

  @ResponseBody
  @ExceptionHandler(UserNotExistException.class)
  public Map<string> handleException(Exception e) {
    Map<string> map = new HashMap();
    map.put("code", "user.notexist");
    map.put("message", e.getMessage());
    return map;
  }
}</string></string>
Copy after login

3. Configure the application.yml file (exceptions cannot be obtained without configuration)

server:
 error:
  include-exception: true
Copy after login

4. Write tests

package cn.jfjb.crud.controller;

import cn.jfjb.crud.exception.UserNotExistException;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;


@Controller
public class HelloController {
  
  @RequestMapping({"/testException"})
  public String testException(@RequestParam("user") String user) {
    if (user != "aaa") {
      throw new UserNotExistException();
    }
    return "index";
  }
}
Copy after login

How to handle custom exceptions and return json in Springboot2.0

How to handle custom exceptions and return json in Springboot2.0

The above is the detailed content of How to handle custom exceptions and return json in Springboot2.0. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template