I would like to upgrade my JSF 1.2 application to JSF 2.2. What's the minimum required Tomcat version for JSF 2.2? I'm currently using Tomcat 5. Is it possible to run JSF 2.2 on it?
Minimum required Tomcat version for JSF 2.2
3.5k Views Asked by St.Antario At
1
There are 1 best solutions below
Related Questions in JSF
- Strange java.lang.ArrayIndexOutOfBoundsException rendering error in jsf application under high load
- h:outputStylesheet inside ui:repeat
- IntelliJ warns "Cannot resolve variable" on EL variables declared in parent page of include
- How to instantiate a backing bean on page load
- How to disable default keyCode event in Primefaces?
- How to define a style for ul which appears automatically
- How to add '%' symbol in textbox using jsf and jsp?
- Primefaces onkeyPress triggerevent
- h:commandButton action method is not invoked
- f:ajax resetValues="true" does not seem to work
- Primefaces datatable duplicate "No records found" while doing column freeze for empty records
- How to provide a file download from a JSF backing bean using af:commandMenuItem?
- Remove message from h:outputText ofter time
- How to change the position of confirmation box in jsf primefaces?
- commandLink not working when images are in same line
Related Questions in TOMCAT
- Best way to pass an environment variable to several config files
- Openshift context path
- KeyStore file is not found in jar, although present in jar
- phpseclib of how to get PID and kill
- Unable to connect database of lamp instance from servlet running on tomcat instance of google cloud
- Spring and Tomcat: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
- How can I get a custom header from the client in Tomcat?
- why lost Mysql connection pool after a period?
- Eclipse Java EE + Bitnami Tomcat Stack
- Service not starting using Spring-boot during integration tests
- Image not loading in web page and says 404 error
- Maven Tomcat plugin - 404 WebServlet not found
- How to deploy a spring boot MVC application in traditional tomcat webapps folder?
- Tomcat Manager is not accessible in multi-domain configuration
- JSP return Jasper Exceptions on my friend's pc's when it works on mine
Related Questions in JSF-2.2
- h:outputStylesheet inside ui:repeat
- h:commandButton action method is not invoked
- f:ajax resetValues="true" does not seem to work
- Remove message from h:outputText ofter time
- JSF 2.2 ViewDeclarationLanguage createComponent passes attributes as String?
- Using multiple FluidGrids in one form
- File upload via h:inputfile (prettyfaces) does not work
- Eclipse + Wildfly + Maven EAR project, is it possible to have files update without redeploy?
- <pe:fluidGrid> not updating var in second iteration of <p:dataList>
- JSF Validators do not work if Random or SecureRandom used to generate component ID
- Dynamic 2D arrayList table not working after refreshing in primefaces?
- Only values from last pe:fluidGrid iteration of p:dataList are updated in model
- Render hidden elements using JSF and AJAX
- javax.servlet.ServletException the request doesn't contain a multipart/form-data or multipart/mixed stream
- Fully disable Weld JSF integration in Wildfly 8.2
Related Questions in MINIMUM-REQUIREMENTS
- Selecting minimum android verion
- How can I tell which minimum CMake version to require in CMakeLists.txt?
- Hadoop 5-Node Test Setup - Minimum Hardware Requirements
- Mac App Store: changing minimum system requirements
- Requirements analysis and use cases
- How to add and iOS7 support to iOS8 compatibility version in xamarin
- Minimum hardware requirements to run an HTML5 capable browser
- What's the oldest OS Java 8 supports?
- How to determine minimal Eclipse plug-in requirements?
- How to specify that our app need IOS 6?
- iOS April30 (extended to June30) 2020 Requirements -- iOS 13 SDK, All-Screen Design, Launch Storyboard, Swift3
- What is the minimum configuration to run the JVM?
- Inno Setup - How can I check system specs before/during installation?
- Minimum required Tomcat version for JSF 2.2
- Minimum requirements for Unity for Android?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
JSF 2.2 requires a Servlet 3.0 compatible container, mainly because of the new
<h:inputFile>component which requires container-native file upload support. This was only introduced in Servlet 3.0.If you check the Tomcat versions overview, then you'll see that you need minimally Tomcat 7.x in order to have a Servlet 3.0 compatible container.
You're not terribly clear on the exact Tomcat version you're currently using (5.0.x vs 5.5.x is quite a difference), but if it is Tomcat 5.5.x, then you could run JSF 2.0/2.1 on it if you supply a custom EL 2.1 compatible implementation along the webapp itself. See also the answer on Running JSF 2.0 on Servlet 2.4 container.