亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

切入業務日志

發布時間:2020-06-28 23:15:38 來源:網絡 閱讀:502 作者:isiah_zhou 欄目:開發技術

創建接口BizAnnotation.java

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)  
@Target({ElementType.METHOD})
public @interface BizAnnotation {

    //操作模塊
    String moduleName();  
    //操作
    String option(); 
    
}

-----------------------------------------------------------默默無聞的分割線-----------------------------------------------------------

添加業務日志DAO接口bizLoggerDao,此處未貼代碼。

添加業務日志DAO接口bizLoggerDao實現類bizLoggerDaoImpl,此處未貼代碼。

-----------------------------------------------------------默默無聞的分割線-----------------------------------------------------------

標記業務接口StudentService.java

import java.util.List;
import com.shenzhen.management.pojo.Student;
public interface StudentService {
public List<Student> getAllStudents();
@BizAnnotation(moduleName="Student Management",option="Add Student")
public void addStudent(Student student);
}

-----------------------------------------------------------默默無聞的分割線-----------------------------------------------------------

添加業務接口StudentService.java實現類StudentServiceImpl.java,此處未貼代碼。

-----------------------------------------------------------默默無聞的分割線-----------------------------------------------------------

創建業務日志類BizLogger.java

import java.lang.reflect.Method;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.reflect.MethodSignature;
import com.opensymphony.xwork2.ActionContext;
import com.shenzhen.management.dao.BizLoggerDao;
import com.shenzhen.management.service.BizAnnotation;

public class BizLogger {


private BizLoggerDao bizLoggerDao;


        public void log(JoinPoint joinPoint, Object returnObj) {
        
        //方法名
        String methodName = joinPoint.getSignature().getName();
        //參數
        Object[] parameters = joinPoint.getArgs();
        //返回值
        Object returnValue = returnObj;
        //獲取模塊,操作
        Method method = ((MethodSignature)joinPoint.getSignature()).getMethod();
        BizAnnotation bizAnnotation = method.getAnnotation(BizAnnotation.class);
        String moduleName = bizAnnotation.moduleName();
        String option = bizAnnotation.option();  
        //獲取用戶ID
        String userId = getUserId();
        //獲取用戶IP
        String ip = getIP();
        //執行插入
        bizLoggerDao.saveLog(選擇需要保存的數據作為參數);
    }
    
    public String getTime()
    {
    Date now = new Date(); 
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
    String time = dateFormat.format( now ); 
    return time;
    }
    
    public String getUserId()
    {
    Map session =  ActionContext.getContext().getSession(); 
    String userId = (String)session.get("userId");
    return userId;
    }
    
    public String getIP() { 
    
    HttpServletRequest request =  org.apache.struts2.ServletActionContext.getRequest();
    
        String ip = request.getHeader("x-forwarded-for"); 
        if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { 
            ip = request.getHeader("Proxy-Client-IP"); 
        } 
        if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { 
            ip = request.getHeader("WL-Proxy-Client-IP"); 
        } 
        if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { 
            ip = request.getRemoteAddr(); 
        } 
        return ip; 
    }


public BizLoggerDao getBizLoggerDao() {
return bizLoggerDao;
}


public void setBizLoggerDao(BizLoggerDao bizLoggerDao) {
this.bizLoggerDao = bizLoggerDao;

}

-----------------------------------------------------------默默無聞的分割線-----------------------------------------------------------

配置applicationContext.xml

    <bean id = "bizLoggerDao" class="com.shenzhen.management.dao.impl.BizLoggerDaoImpl">
      <property name="sqlSessionTemplate" ref="sqlSessionTemplate"></property>
    </bean>
    <bean id="bizLogger" class="com.shenzhen.management.util.log.BizLogger">
      <property name="bizLoggerDao" ref="bizLoggerDao" />
    </bean>
<aop:config>
 <aop:pointcut id="bizLogPointcut" expression="execution(* com.shenzhen.management.service.*.*(..))"/>
      <aop:aspect id="bizLogAspect" ref="bizLogger">
        <aop:after-returning method="log" returning="returnObj" pointcut-ref="bizLogPointcut"/>
      </aop:aspect>
    </aop:config>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五常市| 海安县| 鞍山市| 剑阁县| 桐梓县| 泗水县| 宜黄县| 民乐县| 应城市| 大关县| 灵寿县| 湘潭县| 准格尔旗| 龙游县| 五台县| 施秉县| 都江堰市| 福泉市| 锡林浩特市| 武鸣县| 方城县| 孝感市| 上高县| 泉州市| 邯郸县| 同心县| 江安县| 石台县| 高碑店市| 永靖县| 虞城县| 金坛市| 仁怀市| 宿州市| 深水埗区| 揭东县| 大埔区| 周宁县| 久治县| 交口县| 恩施市|