0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

サーブレット実行時にWEB-INF配下のファイルを読み込む

Last updated at Posted at 2017-01-24

前提

java8 tomcat7 seasar2を用いて実装

サーブレットコンテキストを用いてファイル取得

sastrutsにサーブレットを取得するUtilがあったので利用

ServletContext context = ServletContextUtil.getServletContext();
String path = context.getRealPath("WEB-INF/classes/xxx.txt");
File file = new File(path);

利用シーンは少ないかもしれないが備忘録

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?