Hi All,
We are planning to upgrade the SmartGWT 13.0. For the trial and run use the smartGWT 13.0 evaluation version. We made some changes to the code respective to Java 17. I could breathe easily after that by starting the tomcat but eventually ended up in another error.
We have added spring security for authentication purposes and upgraded the spring version to 5.3.32. The attached error log is below.
In addition to that added web.xml for spring configuration as below.
Can you suggest your thoughts on this?
Thanks,
We are planning to upgrade the SmartGWT 13.0. For the trial and run use the smartGWT 13.0 evaluation version. We made some changes to the code respective to Java 17. I could breathe easily after that by starting the tomcat but eventually ended up in another error.
We have added spring security for authentication purposes and upgraded the spring version to 5.3.32. The attached error log is below.
In addition to that added web.xml for spring configuration as below.
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>gwtCacheControlFilter</filter-name>
<filter-class>com.test.gui.server.GWTCacheControlFilter</filter-class>
</filter>
<filter>
<filter-name>CompressionFilter</filter-name>
<filter-class>com.isomorphic.servlet.CompressionFilter</filter-class>
</filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>gwtCacheControlFilter</filter-name>
<filter-class>com.test.gui.server.GWTCacheControlFilter</filter-class>
</filter>
<filter>
<filter-name>CompressionFilter</filter-name>
<filter-class>com.isomorphic.servlet.CompressionFilter</filter-class>
</filter>
Thanks,
Comment