AOP的三种实现

阅读更多
1、利用Spring AOP
2、所依赖的包是普通java编译,非aspectJ编译

	
		org.codehaus.mojo
		aspectj-maven-plugin
		1.8
		
			
				
					compile
					test-compile
				

				
					1.7
					1.7
					1.7			
                    
                        
                            xx
                            yy
                        
                    
				
			
		
	 


3、所依赖的包用aspectJ编译过
	    
		        org.codehaus.mojo
		        aspectj-maven-plugin
		        1.8
		        
		            
		                
		                    compile
		                    test-compile
		                
		
		                
		                    1.7
		                    1.7
		                    1.7
		                    
		                        
		                            XX
		                            YY
		                            aspectj
		                                                
		                    
		                
		            
		        
		     

你可能感兴趣的:(aop)