MyBatis Generator 生成注解还是xml的方式,去除多余注释

MyBatis Generator 的生成方式

 




	
	
	

                 
			
			
			
		
		
			
		
			
		
			
		


		

 

 

当type=XMLMAPPER                 时,会生成一个XXX.xml文件内有各种sql语句,是mapper的实现。

当type=ANNOTATEDMAPPER时,会直接在mapper接口上添加注释。

public interface UserMapper {
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table user
     *
     * @mbggenerated Thu Feb 27 22:11:16 CST 2014
     */
    @SelectProvider(type=UserSqlProvider.class, method="countByExample")
    int countByExample(UserExample example);

 

 

你可能感兴趣的:(错误异常,数据库)