Gradle + Spring BootのWebアプリケーションでresources内のファイルを取得する

開発

gradleだとresourcesやらpublicやらの内容はclasspath直下に置かれるので、
取得するには下記のように記述します。

ApplicationContext ctx = new ClassPathXmlApplicationContext();
File resourceFile = ctx.getResource("classpath:test.json").getFile();

コメント

タイトルとURLをコピーしました