鍍金池/ 問(wèn)答/Java  HTML/ ajax application/json傳入后臺(tái),攔截器怎么獲取參數(shù)且不破壞

ajax application/json傳入后臺(tái),攔截器怎么獲取參數(shù)且不破壞 @RequestBody正常接收?

如題:

  前端傳入代碼:
   
   $("#button").click(function(){
 var user = {"name":"張三","age":9,"key":"xx"};
$.ajax({
    url:"http://localhost:8080/mybatis/insert",    
    contentType : 'application/json',
    type : "POST",
    dataType: 'json',
    data: JSON.stringify(user),
    success : function(data) {
        alert(data.result);
    }
});

攔截器:

    @Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse arg1, Object arg2) throws Exception {

    System.out.println("我攔截了");
    // 不能使用 request.getReader(); 和流的方式獲取(流只能取一次,導(dǎo)致后臺(tái)獲取不到參數(shù)),request.getParameter();獲取不到 json格式參數(shù)
    
    return true;
}

后臺(tái):

@RequestMapping("/insert")

public Map<String, Object> insert(@RequestBody User user){
    service.insert(user);
    Map<String, Object> result = new HashMap<>();
    result.put("result", "success");
    return result;
}

,請(qǐng)問(wèn)誰(shuí)有辦法在不破壞后臺(tái):流和@RequestBody情況下,在攔截器里面獲取我前臺(tái)傳入的key?

回答
編輯回答
獨(dú)特范

RequestBodyResponseBody 只能被讀取一次,故而不要在 interceptor 中進(jìn)行讀取操作. 具體的解釋和解決方法和移步這里Spring REST service: retrieving JSON from Request

2017年2月26日 10:38
編輯回答
尐懶貓

當(dāng)然使用aop來(lái)做咯。
代碼如下。

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

import java.util.Arrays;

@Aspect
@Component
public class LoggingAspect {

    private final Logger log = LoggerFactory.getLogger(this.getClass());
    
    @Pointcut("within(@org.springframework.stereotype.Repository *)" +
        " || within(@org.springframework.stereotype.Service *)" +
        " || within(@org.springframework.web.bind.annotation.RestController *)")
    public void springBeanPointcut() {
        
    }
    
    @Pointcut("within(com.fanxian.logic.*.repository..*)"+
        " || within(com.fanxian.logic.*.service..*)"+
        " || within(com.fanxian.logic.*.controller..*)")
    public void applicationPackagePointcut() {
        
    }


    @AfterThrowing(pointcut = "applicationPackagePointcut() && springBeanPointcut()", throwing = "e")
    public void logAfterThrowing(JoinPoint joinPoint, Throwable e) {
        log.error("Exception in {}.{}() with cause = \'{}\' and exception = \'{}\'", joinPoint.getSignature().getDeclaringTypeName(),
                joinPoint.getSignature().getName(), e.getCause() != null? e.getCause() : "NULL", e.getMessage(), e);
    }
    
    @Around("applicationPackagePointcut() && springBeanPointcut()")
    public Object logAround(ProceedingJoinPoint joinPoint) throws Throwable {
        if (log.isDebugEnabled()) {
            log.debug("Enter: {}.{}() with argument[s] = {}", joinPoint.getSignature().getDeclaringTypeName(),
                joinPoint.getSignature().getName(), Arrays.toString(joinPoint.getArgs()));
        }
        try {
            Object result = joinPoint.proceed();
            if (log.isDebugEnabled()) {
                log.debug("Exit: {}.{}() with result = {}", joinPoint.getSignature().getDeclaringTypeName(),
                    joinPoint.getSignature().getName(), result);
            }
            return result;
        } catch (IllegalArgumentException e) {
            log.error("Illegal argument: {} in {}.{}()", Arrays.toString(joinPoint.getArgs()),
                joinPoint.getSignature().getDeclaringTypeName(), joinPoint.getSignature().getName());

            throw e;
        }
    }
}

springBeanPointcut方法配置了spring注解的切入點(diǎn),applicationPackagePointcut則為你想要攔截方法的切入點(diǎn)。
logAfterThrowing為攔截捕獲到的異常,logAround環(huán)繞方法獲取到攔截的方法打印方法名,輸入的參數(shù)等等,再往下的Object result = joinPoint.proceed();為調(diào)用目標(biāo)方法,最后打印了返回值。

你需要的只是獲取輸入的參數(shù),所以joinPoint.getArgs()就是你需要的方法。

2018年5月9日 03:10