lodsve.core.io.support.LodsveResourceLoader Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.core.io.support;
import lodsve.core.io.ZookeeperResource;
import lodsve.core.utils.StringUtils;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.Resource;
import org.springframework.util.Assert;
/**
* Lodsve ResourceLoader.
*
* @author sunhao([email protected])
* @date 2018-1-2-0002 20:51
*/
public class LodsveResourceLoader extends DefaultResourceLoader {
protected static final String URL_PREFIX = "zookeeper:";
@Override
public Resource getResource(String location) {
Assert.notNull(location, "Location must not be null");
if (StringUtils.startsWith(location, URL_PREFIX)) {
return new ZookeeperResource(StringUtils.substringAfter(location, URL_PREFIX));
}
return super.getResource(location);
}
}