我正在使用最新的node-config。目前,我有几个带有本地配置的项目和另一个带有通用配置的项目。
这是我目前的结构:
ProjectA/configs/{production, staging, integration}
ProjectB/configs/{production, staging, integration}
Common/configs/{production, staging, integration}
我需要使用本地定义的Common/configs
在ProjectA和ProjectB中加载NODE_ENV
个文件。
目前是否支持此功能?如何实现类似的东西?
谢谢!
答案 0 :(得分:1)
我是package application;
import java.util.*;
import java.text.DateFormat;
public class CheckSystemTime implements Runnable {
//String locale;
public CheckSystemTime(/**String location**/) {
//this.locale = location;
}
public void run() {
Date rightNow;
DateFormat timeFormatter;
String timeOutput;
rightNow = new Date();
Locale currentLocale = new Locale("de");
timeFormatter = DateFormat.getTimeInstance(DateFormat.DEFAULT, currentLocale);
timeOutput = timeFormatter.format(rightNow);
//e.g. MyController.setLabel(timeOutput); doesnt work
}
}
的维护者。目前不支持此功能。
如果您的配置格式是JavaScript文件(或者您愿意更改它)。您可以使用标准Node.js语法将配置从公共位置加载到node-config
和ProjectA
的配置文件中。