All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formkiq.server.config.FormkiqSpringBootInitializer Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.formkiq.server.config;

import org.springframework.boot.context.web.SpringBootServletInitializer;
import org.springframework.boot.orm.jpa.EntityScan;
import org.springframework.context.annotation.ComponentScan;

/**
 * FormKiQ Spring Boot initialization class.
 * The @SpringBootApplication class should extend this class.
 *
 */
@ComponentScan(basePackages = {
        "com.formkiq.server.config",
        "com.formkiq.server.dao",
        "com.formkiq.server.service",
        "com.formkiq.server.api",
        "com.formkiq.server.controller"})
@EntityScan(basePackages = "com.formkiq.server.domain")
public abstract class FormkiqSpringBootInitializer
        extends SpringBootServletInitializer {
    // empty
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy