adspace
Give a sample jsp configuration in the deployment descriptor.
Answer Posted / Vipin Kumar Raj
Here's an example of configuring JSP settings in the web.xml file:n```xmln<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0">n <jsp-config>n <jsp-property-group>n <url-pattern>*.jsp</url-pattern>n <size-limit>1024000</size-limit>n </jsp-property-group>n </jsp-config>n</web-app>n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers