Struts2 获取项目相关路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2 获取项目相关路径相关的知识,希望对你有一定的参考价值。

Struts2 获取项目路径

 

package actions.app;

import java.io.File;

 
import org.apache.struts2.ServletActionContext;

public class GetImagesPathAction {
   
    public String execute(){
        
        String bathPath=System.getProperty("user.dir");
        System.out.println(bathPath);
        //C:\JavaEE_Tools\apache-tomcat-7.0.68\bin
        
        
        String basePath1=ServletActionContext.getServletContext().getRealPath(File.separator);
        System.out.println(basePath1);
        // C:\JavaEE_Tools\apache-tomcat-7.0.68\webapps\myWebApp\
        
        String bathPath2=GetImagesPathAction.class.getClassLoader().getResource("").getFile().replaceAll("/WEB-INF/classes/", "").replaceAll("%20", " ").substring(1);
        System.out.println(bathPath2);
        // C:/JavaEE_Tools/apache-tomcat-7.0.68/webapps/myWebApp

        return "success";
    }

}

 

以上是关于Struts2 获取项目相关路径的主要内容,如果未能解决你的问题,请参考以下文章

普通JAVA类 如何获取,WEB项目的根路径

改善struts2验证机制的核心设计思想

struts2

Struts2框架里面action与前端jsp页面进行交互路径问题---》一个对话框里面有很多超链接,进行相应的跳转

Struts2 maven项目简单案例

struts2相关简单介绍