资源简介
SSM图书信息管理系统.zip
代码片段和文件信息
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
............此处省略245个文件信息
相关资源
- zw_SSM_Project.zip
- 基于SSM开发药店药品管理系统.zip
- 基于ssm的电子商城
- SSM_users_dept.zip
- SSM框架最新配置jdk8+tomcat8.5.24
- ssm项目银行管理系统
- 人力资源管理系统SSM 源码
- 一个关于健康的小型网站前后端都有
- 基于ssm框架实现的考勤系统
- Spring+SpringMVC+MyBatis医院预约系统
- 基于ssm的一个酒店管理系统
- 基于SSM的公园园林绿化管理系统
- 简洁的SSM框架+restful风格
- 基于SSM框架的微信二次开发Demo
- ssm maven 图书管理系统
- SSM框架搭建亲测可用
- 基于SSM的网上购物系统
- ssm的一个简单的整合,很适合新后与
- activiti ssm
- 贵美商城项目SSM开发版
- ssm框架写的超市管理系统 带数据库
- SSM搭建的商城毕业设计附带论文与设
- ssm房屋租赁网.zip
- 保护区、景区管理系统SSM毕设定制开
- 软件工程课程设计项目:基于Maven+S
- 个人博客源码SSMSpringBoot、thymeleaf、
- ssm框架搭建教程
- ssm小项目,实现对数据的增删改查及
- SSM基础适合小白
- Spring+SpringMVC+MyBatis问卷调查网框架
评论
共有 条评论