赞
踩
原文网址: SpringBoot全局处理系列--全局异常处理_IT利刃出鞘的博客-CSDN博客
说明
本文用实例介绍SpringBoot如何进行全局请求处理。
方案简介
@ControllerAdvice与@ModelAttribute结合可以全局处理请求,在调用Controller之前预先进行处理。
下边三种方式都可以全局处理请求(请求进来时,它们的执行顺序为从上到下):
本文介绍第三种
系列文章
SpringBoot全局处理我写了一个系列 :
粉丝福利:很多粉丝私信问我有没有Java的面试及PDF书籍等资料,我整理了一下,包含:真实面试题汇总、简历模板、PDF书籍、PPT模板等。这些是我自己也在用的资料,面试题是面试官问到我的问题的整理,其他资料也是我自用的,真正实用、靠谱。资料可以从这里免费获取:资料地址
全局请求处理类
- package com.example.common.advice;
-
- import org.springframework.web.bind.annotation.ControllerAdvice;
- import org.springframework.web.bind.annotation.ModelAttribute;
-
- import javax.servlet.http.HttpServletRequest;
-
- @ControllerAdvice
- public class GlobalRequestAdvice {
- @ModelAttribute
- public void authenticationUser(HttpServletRequest request) {
- System.out.println("查询的参数:" + request.getQueryString());
- System.out.println("用户名参数:" + request.getParameter("userName"));
- System.out.println("header1值:" + request.getHeader("header1"));
- }
- }
Controller
- package com.example.business.controller;
-
- import com.example.business.entity.User;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- @RestController
- @RequestMapping("user")
- public class UserController {
-
- @GetMapping("save")
- public void save(User user) {
- System.out.println("Controller保存用户:" + user);
- }
- }
postman访问:http://localhost:8080/user/save?userName=Tony&age=22
//header设置:
后端结果
postman结果(本处我没返回东西,所以是空的)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。