在Java中启动加载配置文件可以通过以下几种方式来实现:
Properties prop = new Properties();
try {
prop.load(new FileInputStream("config.properties"));
String propertyValue = prop.getProperty("propertyName");
// 使用属性值
} catch (IOException e) {
e.printStackTrace();
}
ResourceBundle bundle = ResourceBundle.getBundle("config");
String propertyValue = bundle.getString("propertyName");
// 使用属性值
InputStream inputStream = getClass().getClassLoader().getResourceAsStream("config.properties");
Properties prop = new Properties();
prop.load(inputStream);
String propertyValue = prop.getProperty("propertyName");
// 使用属性值
@Configuration
@PropertySource("classpath:config.properties")
public class AppConfig {
@Value("${propertyName}")
private String propertyValue;
// 使用属性值
}
以上是一些常用的方法来启动加载配置文件,根据具体的需求和开发环境可以选择合适的方式来实现。