com.formkiq.server.config.FormkiqSpringBootInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
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
}