top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How can we disable java code or scripting in JSP page?

0 votes
531 views
How can we disable java code or scripting in JSP page?
posted Aug 22, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

We can disable scripting elements in JSP pages through deployment descriptor configuration like below.

<jsp-config>
        <jsp-property-group>
            <url-pattern>*.jsp</url-pattern>
            <scripting-invalid>true</scripting-invalid>
        </jsp-property-group>
    </jsp-config>

Above url-pattern will disable scripting for all the JSP pages but if you want to disable it only for specific page, you can give the JSP file name itself.

answer Aug 23, 2017 by Ayush Srivastav
...