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

lodsve.workflow.config.WorkflowConfiguration Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
package lodsve.workflow.config;

import lodsve.core.datasource.DataSource;
import lodsve.mybatis.configs.annotations.EnableMyBatis;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
 * 工作流JavaConfig.
 *
 * @author sunhao([email protected])
 * @version V1.0, 16/4/19 下午4:18
 */
@Configuration
@EnableMyBatis(
        dataSource = @DataSource("workflow"),
        basePackages = "lodsve.workflow.repository",
        enumsLocations = "lodsve.workflow.enums"
)
@ComponentScan("lodsve.workflow")
public class WorkflowConfiguration {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy