Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Upgrading SmartGWT13.0 with Java 17 & Apache Tomcat/10.1.19

    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.

    <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>
    Can you suggest your thoughts on this?


    Thanks,


    Attached Files

    #2
    First: your support is long expired. Please renew if you need help.

    Note that this error doesn’t involve our software at all - we are not in the stack trace. It looks as if you are trying to register classes that are not servlets or filters as if they are servlets or filters.

    Comment

    Working...
    X