For those stores upgrading to 3.3.0 who want to make use of the new integration with Google Guice,
a new servlet filter has been added to the application.
The servlet filter must be added to the /WEB-INF/web.xml file.
Since that file is not distributed with upgrades, it must be manually upgraded as part of the upgrade.
To execute the change, open the /WEB-INF/web.xml file and add the following Guice Filter
definition, immediately below the definition for the Hibernate filter:
<filter>
<filter-name>guiceFilter</filter-name>
<filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
</filter>
Next add the following filter mapping, immediately below the mapping for the Hibernate filter:
<filter-mapping>
<filter-name>guiceFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Copyright © 2009-2017 SoftSlate, LLC. All Rights Reserved.
Powered by SoftSlate Commerce