在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;
// 使用屬性值
}
以上是一些常用的方法來啟動加載配置文件,根據具體的需求和開發環境可以選擇合適的方式來實現。