Allatori代码混淆

Allatori代码混淆

*在项目(模块)中添加代码混淆,采用allatori官网提供的allatori.jar,本案例采用SpringBoot搭建,maven私服搭建引入allatori依赖

一、采用pom方式引入

1、pom.xml中引入依赖

在dependencies标签中添加



    com.cs.allatori
    allatori
    1.0
    provided

在plugins标签中添加



	org.codehaus.mojo
	exec-maven-plugin
	1.2.1
	
		
			run-allatori
			package
			
				exec
			
		
	
	
		java
		
			-Xms128m
			-Xmx512m
			-jar
			
			${settings.localRepository}/com/bjzhianjia/allatori/allatori/1.0/allatori-1.0.jar
			
			${basedir}/src/main/resources/allatori.xml
		
	


二、直接引入allatori.jar方式

TODO

三、添加代码混淆配置文件allatori.xml

官配详细配置
项目的resources目录中添加allatori.xml配置文件,写入以下配置,按自己的项目做配置调整


    
    
        
    
    
    
        
            
            
        
    
    
    
    
    
        
        
        
        
        
		
        
        
        
    
    
    
    
    
    
    
    
    
    

你可能感兴趣的:(SpringBoot,其他)