spring MVC图书后台管理系统开发
Posted 程序猿全敏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring MVC图书后台管理系统开发相关的知识,希望对你有一定的参考价值。
代码下载路径:http://www.zuidaima.com/share/3613338735234048.htm
首先我希望首先看看这两篇文章
1.手把手搭建一个简易的图片文件tomcat服务器
http://www.zuidaima.com/blog/3508524587715584.htm
2.java上传文件到本地服务器实例详解
http://www.zuidaima.com/blog/3508524587715584.htm
首先,我之前发过
手把手教你们通过jquery ajax调用查询java struts2后端数据+js拼接字符串
http://www.zuidaima.com/share/3066532429925376.htm
手把手教你们通过jquery ajax调用查询java servlet后端数据+js拼接字符串
http://www.zuidaima.com/share/3066192077687808.htm
这个里面有手把手教你们通过jquery ajax调用查询springMVC 后端数据+js拼接字符串
就发这个主要代码 js代码
02 |
url : "<%=basePath%>" + "file/fileList" , |
05 |
success : function (data) { |
07 |
for ( var i=0;i<data.length;i++){ |
08 |
var str1 = "<tr><td><input name='' type='checkbox' value='' /></td>" ; |
09 |
var str2 = "<td>" +data[i].fileid+ "</td>" |
10 |
var str3= "<td>" +data[i].filename+ "</td>" ; |
11 |
var str4= "<td>" +data[i].uplodetime+ "</td><td><a href='" +data[i].fileurl+ "' target='pdfContainer' onclick='showPdf(true)'>浏览<a></td>" ; |
12 |
var str5 = "<td><a href='#' class='tablelink'>查看</a> <a href='#' class='tablelink'> 删除</a></td></tr>" ; |
13 |
var html=str1+str2+str3+str4+str5; |
14 |
$( '#fileList' ).append(html); |
控制层代码
view sourceprint?
07 |
@RequestMapping ( "/fileList" ) |
08 |
public void fileList(HttpServletRequest request,HttpServletResponse response) throws Exception{ |
10 |
List<LearnFile> fileList=fileService.fileList(); |
11 |
JSONArray jsonArray = JSONArray.fromObject(fileList); |
12 |
response.setContentType( "application/json" ); |
14 |
PrintWriter out = response.getWriter(); |
15 |
String json = jsonArray.toString(); |
17 |
} catch (IOException e) { |
本代码包包含了
1.用户登录
2.文件服务器
3.文件浏览
4.文件上传
5.文件列表
等继续更新图书系统开发(二)
以上是关于spring MVC图书后台管理系统开发的主要内容,如果未能解决你的问题,请参考以下文章
spring+spring mvc+mybatis+mysql+dubbo整合开发任务流程后台管理系统
基于Spring MVC + Spring + MyBatis的图书信息管理系统
基于Spring MVC + Spring + MyBatis的图书信息管理系统
基于Spring MVC + Spring + MyBatis的图书信息管理系统
基于Spring MVC + Spring + MyBatis的图书信息管理系统
基于Spring MVC + Spring + MyBatis的图书资源管理系统