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

org.openbp.config.modelmgr.ClassPathModelMgrConfig Maven / Gradle / Ivy

There is a newer version: 0.9.11
Show newest version
package org.openbp.config.modelmgr;

import org.openbp.core.model.modelmgr.ClassPathModelMgr;
import org.openbp.core.model.modelmgr.ModelMgr;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Spring configuration providing classpath-based model storage.
 * This is the default if you intend to place your models in the jar file of your application.
 */
@Configuration
public class ClassPathModelMgrConfig
{
	@Bean
	public ModelMgr modelMgr()
	{
		return new ClassPathModelMgr();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy