-
Notifications
You must be signed in to change notification settings - Fork 71
FAQ
dlecan edited this page Sep 19, 2012
·
11 revisions
#FAQ
See feature matrix.
See server compatibility matrix.
After each deployment of you application, you need to run this :
bees app:update my-app disableProxyBuffering=true
Add this in your web.xml
(must be located in APP_HOME/war/WEB-INF
):
...
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
<async-supported>true</async-supported>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
...