96 lines
2.4 KiB
Java
96 lines
2.4 KiB
Java
/*
|
|
* Copyright 2019-2020 Zheng Jie
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package com.youchain.service;
|
|
|
|
import com.youchain.service.dto.LogQueryCriteria;
|
|
import com.youchain.domain.Log;
|
|
import org.aspectj.lang.JoinPoint;
|
|
import org.aspectj.lang.ProceedingJoinPoint;
|
|
import org.springframework.data.domain.Pageable;
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Liu Xue
|
|
* @date 2018-11-24
|
|
*/
|
|
public interface LogService {
|
|
|
|
/**
|
|
* 分页查询
|
|
* @param criteria 查询条件
|
|
* @param pageable 分页参数
|
|
* @return /
|
|
*/
|
|
Object queryAll(LogQueryCriteria criteria, Pageable pageable);
|
|
|
|
/**
|
|
* 查询全部数据
|
|
* @param criteria 查询条件
|
|
* @return /
|
|
*/
|
|
List<Log> queryAll(LogQueryCriteria criteria);
|
|
|
|
/**
|
|
* 查询用户日志
|
|
* @param criteria 查询条件
|
|
* @param pageable 分页参数
|
|
* @return -
|
|
*/
|
|
Object queryAllByUser(LogQueryCriteria criteria, Pageable pageable);
|
|
|
|
/**
|
|
* 保存日志数据
|
|
* @param username 用户
|
|
* @param browser 浏览器
|
|
* @param ip 请求IP
|
|
* @param joinPoint /
|
|
* @param log 日志实体
|
|
*/
|
|
|
|
void save(String url,String returnValue,String username, String browser, String ip, JoinPoint joinPoint, Log log);
|
|
|
|
|
|
void saveLog(Log log);
|
|
/**
|
|
* 查询异常详情
|
|
* @param id 日志ID
|
|
* @return Object
|
|
*/
|
|
Object findByErrDetail(Long id);
|
|
|
|
/**
|
|
* 导出日志
|
|
* @param logs 待导出的数据
|
|
* @param response /
|
|
* @throws Exception /
|
|
*/
|
|
void download(List<Log> logs, HttpServletResponse response) throws Exception, Exception;
|
|
|
|
/**
|
|
* 删除所有错误日志
|
|
*/
|
|
void delAllByError();
|
|
|
|
/**
|
|
* 删除所有INFO日志
|
|
*/
|
|
void delAllByInfo();
|
|
}
|