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

org.nutz.boot.starter.uflo.UfloSpringEnvStarter Maven / Gradle / Ivy

The newest version!
package org.nutz.boot.starter.uflo;

import java.util.List;

import org.nutz.boot.tools.SpringWebContextProxy;
import org.nutz.ioc.loader.annotation.IocBean;

@IocBean
public class UfloSpringEnvStarter extends SpringWebContextProxy {

    public UfloSpringEnvStarter() {
        configLocation = "classpath:uflo-spring-context.xml";
        selfName = "uflo";
    }

    @Override
    protected List getSpringBeanNames() {
        List names = super.getSpringBeanNames();
        names.remove(selfName + ".props");
        return names;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy