JSP cannot parse El expression solution _jsp programming

Source: Internet
Author: User
The reason: By default, Servlet 2.4/jsp 2.0 supports EL expressions.

There are two ways to solve this problem:

1. Modify the opening definition of the web.xml.
Copy Code code as follows:

<web-app version= "2.4"
Xmlns= "HTTP://JAVA.SUN.COM/XML/NS/J2EE"
Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"
xsi:schemalocation= "Http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >

This configuration represents the Servlet 2.4/jsp 2.0.

2. Add a code to the beginning of a page that uses an EL expression.
Copy Code code as follows:
<%@ page iselignored= "false"%>

However, at present, I have only tried the second method, and if there are other methods, please do not hesitate to enlighten the readers.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.