com.seezoon.code.gen.CodeGenApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of luna-code-gen Show documentation
Show all versions of luna-code-gen Show documentation
自动生成dao entity service,程序引入时候maven scope选择test
The newest version!
package com.seezoon.code.gen;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import com.seezoon.luna.dao.BaseDao;
@SpringBootApplication
@MapperScan(markerInterface=BaseDao.class,basePackages="com.seezoon.code.gen")
@EnableTransactionManagement(proxyTargetClass=true)
public class CodeGenApplication {
public static void main(String[] args) {
SpringApplication.run(CodeGenApplication.class, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy