「struts2開発」リソースフォルダ(resources)のパスを取得するコード
サンプルコード:
import org.apache.struts2.ServletActionContext;
private final String getResourcePath(){
return ServletActionContext.getServletContext().getRealPath(“/WEB-INF/resources");
}
Coding Changes the World
サンプルコード:
import org.apache.struts2.ServletActionContext;
private final String getResourcePath(){
return ServletActionContext.getServletContext().getRealPath(“/WEB-INF/resources");
}