アプリケーションにいくつかのプロパティ ファイルを追加する必要があります。このファイルをcontroller
ディレクトリに追加しましたが、読み込めません (クラスパスにありませんか?) - InputStream
null です。このファイルをどこに置くとアクセスできますか?
public class Application extends Controller {
static {
try {
Properties p = new Properties();
InputStream in = Application.class.getClassLoader().getResourceAsStream("accounts.properties");
if(in != null) {
p.load(in);
in.close();
} else {
error("null inputstream");
}
} catch (Exception e) {
e.printStackTrace();
}
}
// Actions below
// ...
}