图书管理系统(ssm框架)

1.前端 layui

2.spring springmvc mybatis mybatis逆向工程

项目目录

图书管理系统(ssm框架)_第1张图片

 

jsp引入路径

表单问题

1.如果是表单提交方式传入后台数据日期类型需要在controller中转换

@InitBinder
	public void initBinder(WebDataBinder binder, WebRequest request) {
		DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
		binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));// CustomDateEditor为自定义日期编辑器
	}

2.ajax提交方式以json数据格式方式提交

增加一个属性contentType : 'application/json;charset=UTF-8',

3.layui分页

当layui开启分页功能之后会自动向后台传递两个参数page limit 在controller要封装一个类一个为count的属性代表数据总条数

 

4.前端显示时间日期需要转化

入职日期
  

5.角色传到前端为1 2 3需要显示为普通管理员超级管理员

 角色

 

你可能感兴趣的:(javaweb)