Как использовать плагин Struts2-jQuery с sitemesh - PullRequest
0 голосов
/ 26 марта 2010

У меня есть эта ошибка, когда я пытаюсь включить тег (http://code.google.com/p/struts2-jquery/wiki/HeadTag) в декораторе sitemesh

main.jsp (decorator)
<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator" prefix="decorator" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html  xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>My Project- <decorator:title /></title>
  <sj:head compressed="false" jqueryui="true"></sj:head>
 </head>
 <body>
  <!-- head -->
.... 

Ошибка Tomcat

exception

java.lang.RuntimeException: org.apache.jasper.JasperException: An exception occurred processing JSP page /decorators/main.jsp at line 11

8:  <head>
9:   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10:   <title>My Project- <decorator:title /></title>
11:   <sj:head compressed="false" jqueryui="true"></sj:head>
12:  </head>
13:  <body>
14:   <!-- head -->


Stacktrace:
 com.opensymphony.sitemesh.webapp.decorator.BaseWebAppDecorator.render(BaseWebAppDecorator.java:39)
 com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:84)

Пожалуйста, есть идеи?

Заранее спасибо

Ответы [ 2 ]

1 голос
/ 05 мая 2010

вот ответ:

web.xml

<filter>
  <filter-name>struts-cleanup</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class>
</filter>
<filter-mapping>
  <filter-name>struts-cleanup</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

Теперь все работает нормально (strut2, sitemesh и jquery).

Привет

1 голос
/ 26 марта 2010

Я просто понял, что должен добавить этот фильтр в мой web.xml

<filter>
    <filter-name>struts-cleanup</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class>
</filter>

Спасибо в любом случае

...