com.github.aoshiguchen.framework.configure.impl.JsonConfigReaderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asgc-configure Show documentation
Show all versions of asgc-configure Show documentation
this is a java config load util.
The newest version!
package com.github.aoshiguchen.framework.configure.impl;
import com.github.aoshiguchen.framework.configure.Configure;
import com.github.aoshiguchen.framework.configure.IConfigReader;
import com.github.aoshiguchen.framework.configure.ex.ConfigReaderException;
import com.github.aoshiguchen.framework.configure.ex.IniConfigReaderException;
/**
* 读取json配置实现
* @author aoshiguchen
*/
public class JsonConfigReaderImpl implements IConfigReader {
public Configure readAll(String path) throws ConfigReaderException {
throw new IniConfigReaderException();
}
}