package com.malk.pake; import com.querydsl.jpa.impl.JPAQueryFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.data.jpa.repository.config.EnableJpaAuditing; import javax.persistence.EntityManager; /** * corp项目: 扫描公共模块 * - * 若是无需数据库模块, 配置无效地址也可启动, 引入mjava不支持直接 @SpringBootApplication(exclude = DataSourceAutoConfiguration.class) 配置 * 需要配置 jpa.hibernate.ddl-auto 为 none. 标识对表没有任何操作. 若不设置为 none, flyway.enabled 配置会无效, 在没有数库连接情况下程序无法启动 */ @EnableJpaAuditing @SpringBootApplication(scanBasePackages = {"com.malk"}) public class Boot { public static void main(String... args) { SpringApplication.run(Boot.class, args); } /** * 让Spring管理JPAQueryFactory [不使用Qualifier详见mjava-Boot] */ @Bean public JPAQueryFactory jpaQueryFactory(EntityManager entityManager) { return new JPAQueryFactory(entityManager); } }