我試圖寫一個切入點和建議可能從以下方法打印字符串的變量 -AspectJ切入點內省本地方法的代碼,並打印內部本地方法
public CustomerDto getCustomer(Integer customerCode){
CustomerDto customerDto = new CustomerDto();
String emailID =getEmailAddress();
customerDto.setEmailAddress(emailID);
customerDto.setEmployer(getEmployer());
customerDto.setSpouseName(getSpouse());
return customerDto;
}
我無法找出一個切入點查看字符串emailID的方式,然後在建議中打印相同的值。
我不知道你正在嘗試做的。您是否在執行getCustomer時試圖執行建議? – 2011-05-05 18:32:31