Give a sample jsp configuration in the deployment descriptor.
Answer / 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 |
Which is better jsp or javascript?
What are the features of jsp?
Can a constructor be used in place of init() method to initialize a servlet?
How can automatic creation of session be prevented in a jsp page?
Explain the advantages in jsp?
How are cookies set in jsp?
What are scripting elements?
What are implicit objects?
Which categories can be divided jstl tags, give examples.
How to set a cookie in JSP?
What are the different types of jstl tags?
Can you override jspinit() method? If yes, in which cases?