资源简介
SSM图书信息管理系统
代码片段和文件信息
package com.shuangyulin.controller;
import java.beans.PropertyEditorSupport;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import com.shuangyulin.utils.UserException;
public class baseController {
@InitBinder
// 必须有一个参数WebDataBinder
public void initBinder(WebDataBinder binder) {
//System.out.println(binder.getFieldDefaultPrefix());
binder.registerCustomEditor(Date.class new CustomDateEditor(
new SimpleDateFormat(“yyyy-MM-dd“) false));
binder.registerCustomEditor(Integer.class new PropertyEditorSupport() {
@Override
public String getAsText() {
return (getValue() == null) ? ““ : getValue().toString();
}
@Override
public void setAsText(String text) {
Integer value = null;
if (null != text && !text.equals(““)) {
try {
value = Integer.valueOf(text);
} catch(Exception ex) {
throw new UserException(“数据格式输入不正确!“);
}
}
setValue(value);
}
});
//binder.registerCustomEditor(Integer.class nullnew CustomNumberEditor(Integer.class null true));
binder.registerCustomEditor(Float.class new PropertyEditorSupport() {
@Override
public String getAsText() {
return (getValue() == null)? ““ : getValue().toString();
}
@Override
public void setAsText(String text) {
Float value = null;
if (null != text && !text.equals(““)) {
try {
value = Float.valueOf(text);
} catch (Exception e) {
throw new UserException(“数据格式输入不正确!“);
}
}
setValue(value);
}
});
}
/**
* 处理图片文件上传,返回保存的文件名路径
* fileKeyName: 图片上传表单key
* @throws IOException
* @throws IllegalStateException
*/
public String handlePhotoFileUpload(HttpServletRequest requestString fileKeyName) throws IllegalStateException IOException {
String fileName = “upload/NoImage.jpg“;
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
/**构建图片保存的目录**/
String photoBookPathDir = “/upload“;
/**得到图片保存目录的真实路径**/
String photoBookRealPathDir = request.getSession().getServletContext().getRealPath(photoBookPathDir);
/**根据真实路径创建目录**/
File photoBookSaveFile = new File(photoBookRealPathDir);
if(!photoBookSaveFile.exists())
photoBookSaveFile.mkdirs();
/**页面控件的文件流**/
MultipartFile multipartFile_photoBook = multipartRequest.getFile(fileKeyName);
if(!m
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-10 14:19 SSM图书信息管理系统\
文件 3627 2018-01-10 14:19 SSM图书信息管理系统\.classpath
目录 0 2018-01-10 14:18 SSM图书信息管理系统\.myeclipse\
文件 315 2018-01-10 14:19 SSM图书信息管理系统\.myme
文件 1420 2018-01-10 14:19 SSM图书信息管理系统\.project
目录 0 2018-01-10 14:19 SSM图书信息管理系统\.settings\
文件 500 2018-01-10 14:19 SSM图书信息管理系统\.settings\.jsdtscope
文件 104 2018-01-10 14:19 SSM图书信息管理系统\.settings\com.genuitec.eclipse.core.prefs
文件 197 2018-01-10 14:19 SSM图书信息管理系统\.settings\org.eclipse.core.resources.prefs
文件 330 2018-01-10 14:19 SSM图书信息管理系统\.settings\org.eclipse.jdt.core.prefs
文件 49 2018-01-10 14:19 SSM图书信息管理系统\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2018-01-10 14:19 SSM图书信息管理系统\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2018-01-10 14:19 SSM图书信息管理系统\config\
文件 319 2018-01-10 14:19 SSM图书信息管理系统\config\jdbc.properties
文件 329 2018-01-10 14:19 SSM图书信息管理系统\config\log4j.properties
目录 0 2018-01-10 14:19 SSM图书信息管理系统\config\mybatis\
文件 648 2018-01-10 14:19 SSM图书信息管理系统\config\mybatis\sqlMapConfig.xm
目录 0 2018-01-10 14:19 SSM图书信息管理系统\config\spring\
文件 2443 2018-01-10 14:19 SSM图书信息管理系统\config\spring\applicationContext-dao.xm
文件 1317 2018-01-10 14:19 SSM图书信息管理系统\config\spring\applicationContext-service.xm
文件 2370 2018-01-10 14:19 SSM图书信息管理系统\config\spring\applicationContext-transaction.xm
文件 3054 2018-01-10 14:19 SSM图书信息管理系统\config\spring\springmvc.xm
目录 0 2018-01-10 14:19 SSM图书信息管理系统\mysql数据库脚本\
文件 3110 2018-01-10 14:19 SSM图书信息管理系统\mysql数据库脚本\book_db.sql
目录 0 2018-01-10 14:19 SSM图书信息管理系统\src\
目录 0 2018-01-10 14:19 SSM图书信息管理系统\src\com\
目录 0 2018-01-10 14:19 SSM图书信息管理系统\src\com\shuangyulin\
目录 0 2018-01-10 14:19 SSM图书信息管理系统\src\com\shuangyulin\controller\
文件 4007 2018-01-10 14:19 SSM图书信息管理系统\src\com\shuangyulin\controller\ba
文件 10637 2018-01-10 14:19 SSM图书信息管理系统\src\com\shuangyulin\controller\BookController.java
文件 6446 2018-01-10 14:19 SSM图书信息管理系统\src\com\shuangyulin\controller\BookTypeController.java
............此处省略244个文件信息
相关资源
- 后端开发框架已整合ssm脚手架.zip
- HadoopWeb项目网上商城推荐系统
- mod_wl_24.so
- 深入浅出Hibernate(中文高清版)
- web大作业留言板
- FileZilla&Xshell;.zip
- 拼车web系统
- 基于SSM的网上购物系统的设计与开发
- 软件测试实战:测试Web MSN
- 算法-第4版-Rober-Sedgewick-图灵原版书
- 基于ssm的商品显示
- 传智书城项目完整版
-
ba
seProjectSSM.7z - web通讯录管理系统
- 微信小程序阅读网络小说
- OSSMS.zip
- 基于ssm医院预约挂号系统程序.zip
- tesseract-ocr的中文识别语言库
- AxureUX WEB前后端交互原型通用元件库
- 羽毛球馆管理系统
- jre-6u14-windows-i586
- SpringBoot+Mabatis实战App信息管理系统
- 东北大学web开发程序设计实践实验报
- 明御WEB应用防火墙产品配置手册V3.0
- 海康威视Web开发包.zip
- 度假村项目SSH框架版
- 海康威视WEB开发包最新版
- 大学生课程设计手机购物网站设计与
- web前端网页psd
- AxureUX WEB前后端交互原型通用元件库
评论
共有 条评论