create and show pages not affected by 'CannotRenderException' problem
It appears that create and show pages are unaffected by the error and only when the list page loads does the error occur. The home page also loads without a problem.
I can create and show the record I created but 'list' is not happening.
You mentioned the fragment is in the exception page but it appears to be in the list page, and possibly the exception page as well.
Hope this helps!
Thanks,
Michael
What version of Roo have you tested ?
Quote:
Originally Posted by
dzmitry
Hi, I had the same problem.
Tomcat 5.5 uses JSTL 1.1.
Tomcat 6.0 uses JSTL 1.2.
The problem has been solved after pom.xml file modifications:
remove dependency
Code:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.el</groupId>
<artifactId>com.springsource.org.apache.el</artifactId>
<version>6.0.20</version>
</dependency>
add dependency
Code:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>com.springsource.javax.servlet.jsp</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
<version>1.1.2</version>
</dependency>
All pages generated by Roo are rendered under Tomcat 5.5 as under Tomcat 6.0 successfully.
What version of Roo have you tested ?
Most of the incompatibilities between Roo and Tomcat 5.5. will be on the 1.1 version because of new scaffolding system, now in development.
Note: Related comment on jira at http://jira.springframework.org/brow...l#action_52570
What version of Roo have you tested ?
Quote:
Originally Posted by
mmartinez
What version of Roo have you tested ?
I've tested Roo 1.0.2