gpt4 book ai didi

java - 为什么找不到 getservletcontext?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:53:52 34 4
gpt4 key购买 nike

我正在尝试使用 getServletContext().getRealPath( "/") ,但我不断收到此错误:

找不到符号符号:方法 getServletContext()位置:接口(interface) javax.servlet.http.HttpSession String path = session.getServletContext().getRealPath("/") + "layout/tiles/"+ reportPath ; enter image description here

public ModelAndView handleRequest( HttpServletRequest request, HttpServletResponse response ) throws Exception {

session = request.getSession();
Map params = new HashMap();
String reportPath = "maintenance/jasper/report01.jasper";
exportToPDF( reportPath , response, params );

return null;
}

protected void exportToPDF( String reportPath , HttpServletResponse response, Map jasperParams ) throws Exception {

String path = session.getServletContext().getRealPath( "/" ) + "layout/tiles/" + reportPath ;

if ( !new File( path ).exists() ) {
throw new Exception( "The path doesn''t exist. </br>" + path );
}
InputStream input = new FileInputStream( path );

jasperParams.put( "REPORT_LOCALE", Locale.US );

JasperPrint jasper = JasperFillManager.fillReport( input , jasperParams, new JRBeanCollectionDataSource(Vehicles) );

response.setContentType( "application/pdf" );
ServletOutputStream output = response.getOutputStream();

JRExporter exporter = new JRPdfExporter();

exporter.setParameter( JRExporterParameter.JASPER_PRINT, jasper );
exporter.setParameter( JRExporterParameter.OUTPUT_STREAM, output );

exporter.exportReport();
output.close();


}

你知道为什么会这样吗?

谢谢 Ritesh,我按照你说的做了,但现在我收到一条新消息

enter image description here

--------编辑--------

检查我的 dispatcher-servlet.xml,我发现它与此 web 上显示的代码有点不同。 .我不知道它会如何影响我的项目,但我想知道是否有不同的方法来获得与使用 session.getServletContext().getRealPath( "/") 相同的结果

<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.tiles2.TilesView" />
</bean>
<bean id="tilesConfigurer"
class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/tiles.xml</value>
</list>
</property>
</bean>

最佳答案

getServletContext() 是在 Servlet 2.3 中添加的。它在 2.2 中不存在,请参阅 Servlet 2.2 javadoc

所以唯一的解释是您的项目正在根据旧版本验证代码。

getServletContext() 也在您似乎正在使用的 Spring 的 Controller 类中。因此,不用 session.getServletContext().getRealPath( "/"),您只需使用 getServletContext().getRealPath( "/")

1 月 30 日编辑:Jasper 报告 jar 文件清理

我已验证 jasperreports-3.7.1-project.zip 具有旧版本的 servlet.jar。我建议如下:

  1. 从 jasperreports-3.7.1-project.zip 的 lib 文件夹中删除您添加的所有 jar 文件,但保留“dist”文件夹中的 jar 文件。

  2. 根据编译错误信息,逐一添加jar文件。请不要添加任何在 TOMCAT-HOME/lib 文件夹中也可用的 jar 文件,也不要添加任何 Spring jar 文件。既然你知道 jasper 报告项目有旧的 jar 文件,首先看看 netbeans 是否提供这些 jar,如果没有然后尝试使用来自其他存储库的最新版本,例如 http://repo1.maven.org/maven2/ . Spring framework download with dependencies也有几个常用的文件可以使用。

  3. 检查任何在线资源以获取有关所需 jar 文件的更多信息。以下链接描述了在 netbeans 中与 jasper 报告版本 1.2.5 的集成:http://developers.sun.com/jsenterprise/archive/reference/techart/jse8/jasper_reports.html但是你需要像 3.7.1 版本相关的东西。

关于java - 为什么找不到 getservletcontext?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4840569/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com