向JSP添加注释

向JSP添加注释,第1张

向JSP添加注释

您需要有一个servlet和一个servlet-mapping标签

<?xml version="1.0" encoding="UTF-8"?><web-app version="3.1" 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_3_1.xsd"><session-config>    <session-timeout>        30    </session-timeout></session-config><servlet>   <servlet-name>uploadfile</servlet-name><jsp-file>/mainPage.jsp</jsp-file><multipart-config>    <location>/temp</location>    <max-file-size>20848820</max-file-size>    <max-request-size>418018841</max-request-size>    <file-size-threshold>1048576</file-size-threshold></multipart-config></servlet><servlet-mapping> <servlet-name>uploadfile</servlet-name> <url-pattern>/mainPage.jsp</url-pattern></servlet-mapping</web-app>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5167090.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存