Quellcode durchsuchen

Merge branch 'dev' of chenweida/patient-co-management into dev

chenweida vor 7 Jahren
Ursprung
Commit
ba0be48f80

+ 2 - 2
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/interceptors/GateWayAOP.java

@ -25,7 +25,7 @@ import java.io.PrintWriter;
public class GateWayAOP {
    private Logger logger = LoggerFactory.getLogger(GateWayAOP.class);
    //Controller层切点路径
    //Controller层切点路径1
    @Pointcut("execution(* com.yihu.wlyy.web..*.*(..))")
    public void controllerAspect() {
    }
@ -44,7 +44,7 @@ public class GateWayAOP {
            request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
            obj = point.proceed();
        } catch (Exception e) {
            logger.error(e.getMessage());
           // logger.error(e.getMessage());
        }
        if (request != null) {
            request.setAttribute("returnObj", obj);