| | |
| | | package com.lf.server.aspect; |
| | | |
| | | import com.lf.server.annotation.SysLog; |
| | | import com.lf.server.entity.sys.OperateEntity; |
| | | import com.lf.server.entity.sys.UserEntity; |
| | | import com.lf.server.helper.WebHelper; |
| | |
| | | @Autowired |
| | | private OperateService operateService; |
| | | |
| | | private final static String SELECT = "/select"; |
| | | private final static String SELECT = "select"; |
| | | |
| | | private final static String INSERT = "/insert"; |
| | | private final static String INSERT = "insert"; |
| | | |
| | | private final static String UPDATE = "/update"; |
| | | private final static String UPDATE = "update"; |
| | | |
| | | private final static String DELETE = "/delete"; |
| | | private final static String DELETE = "delete"; |
| | | |
| | | private final static String UPLOAD = "/upload"; |
| | | private final static String UPLOAD = "upload"; |
| | | |
| | | private final static String DOWNLOAD = "/download"; |
| | | private final static String DOWNLOAD = "download"; |
| | | |
| | | private final static String COUNT = "/count"; |
| | | private final static String COUNT = "count"; |
| | | |
| | | private final static String SPLIT = "\\\\"; |
| | | |
| | | private static final Log log = LogFactory.getLog(LogAspect.class); |
| | | |
| | | @Pointcut("@annotation(com.lf.server.aspect.SysLog)") |
| | | @Pointcut("@annotation(com.lf.server.annotation.SysLog)") |
| | | public void logPointCut() { |
| | | // |
| | | } |