SpringMVC
果农夫
努力努力
展开
-
SpringMVC是如何处置线程安全
5.线程安全一般情况下,@Controller是单例的,和Servlet那时是一样的,参见我的Servlet的第二章处理线程安全的问题。例5.1:package com;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletConfig;import javax.servle...转载 2019-11-22 16:03:35 · 341 阅读 · 0 评论 -
给一个SpringMVC的helloworld例子
1.SpringMVC的helloworld例子步骤和Servlet一样:做一个普通的dynamic web project:把所有的jar包直接拷贝到目录中就行了。不用再设置路径了。index.html:<%@ page contentType="text/html; charset=GBK" %><html><head> <...转载 2019-08-31 17:10:14 · 177 阅读 · 0 评论 -
请给出一个SpringMVC的表单提交的例子和session运用的例子
2.表单提交和session像学servlet那时一样,继hello world的例子以后,紧接着我们就要学习表单提交和session。例2.1<%@ page contentType="text/html; charset=GBK" %><html><head> <title>form test</title>&...转载 2019-09-01 17:23:49 · 169 阅读 · 0 评论 -
请给出一个SpringMVC文件上传的SmartUpload版例子
3.文件上传例3.1:<%@ page contentType="text/html; charset=GBK" %><html><body><h1><%if(request.getParameter("i")!=null){out.print("上传了"+request.getParameter("i")+"个文件");}...转载 2019-09-02 09:27:04 · 151 阅读 · 0 评论 -
SpringMVC当中请给出一个下载的例子,文件名必需是中文
4.文件下载例4.1:<%@ page contentType="text/html; charset=GBK" %><html><body ><A href="http://localhost:8080/SpringMVC1/DownLoad.do?file=ibatis环境搭建.ppt">下 载ibatis环境搭建.ppt</A&...转载 2019-09-02 16:39:48 · 239 阅读 · 0 评论