当前位置: 代码迷 >> J2EE >> birt 报表怎样部署到WebLogic 不现实 出现异常
  详细解决方案

birt 报表怎样部署到WebLogic 不现实 出现异常

热度:640   发布时间:2016-04-21 22:17:39.0
birt 报表怎样部署到WebLogic 不现实 出现错误
我用birt写了个报表 
现在想要部署到WebLogic上看看效果,可就是不显示,后台报错如下

可是我并没有用到action,就是jsp引用而已,怎么报action错误呢?也是我不了解,刚用,这点让我很头疼 不知道该去哪里改了
在jsp当中的引用如下
另外 以下是web.xml配置文件内容
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- 单点登对项目内过滤器, 负责将登录信息组装到URL中 -->
<filter>
<filter-name>AccessToExternal</filter-name>
<filter-class>
gmt.boss.iom.login.util.AccessToExternalFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>AccessToExternal</filter-name>
<url-pattern>/FilterSign/*</url-pattern>
</filter-mapping>
<!-- 单点登对项目外部访问过滤器, 负责将URL登录信息保存到session中 -->
<filter>
<filter-name>DelegatingFilterProxy</filter-name>
<filter-class>
org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
<init-param>
<param-name>targetBeanName</param-name>
<param-value>ExternalLoginFilterRes</param-value>
</init-param>
<init-param>
<param-name>targetFilterLifecycle</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>DelegatingFilterProxy</filter-name>
<url-pattern>/InFilterSign/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>PermitFilter</filter-name>
<filter-class>
gmt.boss.iom.login.util.PermitFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>PermitFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml,classpath*:applicationContext.xml
</param-value>
</context-param>

<display-name>Eclipse BIRT Report Viewer</display-name>

<!-- Default locale setting -->
<context-param>
<param-name>BIRT_VIEWER_LOCALE</param-name>
<param-value>en-US</param-value>
</context-param>

<!-- Report resources directory for preview. Default to ${birt home} -->
<context-param>
<param-name>BIRT_VIEWER_WORKING_FOLDER</param-name>
<param-value>zcpt/report</param-value>
</context-param>

<!-- The generated document files directory. Default to ${birt home}/documents -->
<context-param>
<param-name>BIRT_VIEWER_DOCUMENT_FOLDER</param-name>
<param-value>WEB-INF/report-engine/documents</param-value>
</context-param>

<!-- If only access the reprot resources under working folder. Default is false -->
<context-param>
<param-name>WORKING_FOLDER_ACCESS_ONLY</param-name>
<param-value>false</param-value>
</context-param>

<!-- Output image/chart directory. Default to ${birt home}/report/images -->
<context-param>
<param-name>BIRT_VIEWER_IMAGE_DIR</param-name>
<param-value>WEB-INF/report-engine/images</param-value>
</context-param>

<!-- Engine log directory. Default to ${birt home}/logs -->
<context-param>
<param-name>BIRT_VIEWER_LOG_DIR</param-name>
<param-value>WEB-INF/report-engine/logs</param-value>
</context-param>

<!-- Report engine log level -->
<context-param>
<param-name>BIRT_VIEWER_LOG_LEVEL</param-name>
<param-value>WARNING</param-value>
</context-param>

<!-- Directory to store all birt report script libraries (JARs). Default to ${birt home}/scriptlib -->
<context-param>
<param-name>BIRT_VIEWER_SCRIPTLIB_DIR</param-name>
<param-value>WEB-INF/report-engine/scriptlib</param-value>
</context-param>

<!-- Resource location directory. Default to ${birt home} -->
<context-param>
<param-name>BIRT_RESOURCE_PATH</param-name>
  相关解决方案