- 浏览: 1224639 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (883)
- Spring (101)
- Swing (1)
- Mysql (21)
- Js (59)
- Jsp (2)
- Hibernate (19)
- Myeclipse (5)
- SqlServer 2000 (2)
- poi (15)
- Java (70)
- SSH (12)
- Html (47)
- Fusion Charts (1)
- C\C++ (2)
- 汇编 (36)
- Jquery (37)
- Struts2 (6)
- Ubuntu (16)
- powerDesinger (4)
- Jboss (3)
- JAX-RS (13)
- JAXB (5)
- JAX-WS (11)
- JMS (4)
- WebSocket (8)
- PHP (16)
- Flash (1)
- maven (3)
- Oracle (8)
- HttpClient (6)
- sqlserver (19)
- svn (5)
- Tomcat (3)
- Jdbc (3)
- EsayUi (11)
- 微信公众平台 (19)
- IIS (2)
- Freemarker (11)
- Comet (1)
- Spring MVC (85)
- JBoss Seam (3)
- 二维码 (9)
- Spring Security (4)
- Ehcache (3)
- Apache Shiro (7)
- jackson (16)
- JPA (8)
- jcaptcha (2)
- RSA (2)
- Ajax (6)
- 跟我学Shiro (0)
- Spring4 (19)
- 跟我学spring3 (0)
- css (32)
- excel (4)
- Filter (3)
- 微信公众帐号开发教程 (0)
- Android (6)
- log4j (6)
- 淘宝接口 (17)
- 支付集成 (3)
- 单点登录 (3)
- Html5 (27)
- 移动平台前端 (3)
- Linux (44)
- FusionCharts (27)
- Json Jackson Xml (5)
- 方培工作室-微信开发 (0)
- Apache与Tomcat与IIS整合 (10)
- Nginx (17)
- webService (2)
- apache (4)
- lucene (3)
- lodop (2)
- Shiro (3)
- zTree (2)
- ireport (12)
- Servlet3.0 (5)
- 前端美工 (19)
- AngularJS (1)
- C#开发微信门户及应用 (0)
- Shell (3)
- bat脚本 (16)
- Bootstrap (26)
- Less (10)
- photoshop (6)
- Redis (6)
- Mongodb (10)
- MyBatis (3)
- 数据结构 (0)
- 读写分离-主从复制 (0)
- JFinal (0)
- 百度地图api (3)
- hadoop-hbase-hive-spark (3)
- WebStorm (2)
- Quartz (5)
- ios (0)
- Mina (8)
- Android Studio (4)
- Ratchet教程 (0)
- 移动端重构系列 (1)
- cubic-bezier贝塞尔曲线CSS3动画工具 (1)
- nginx+tomcat+memcached集群 (0)
- 集群 (0)
- ZooKeeper (3)
- Dubbo (0)
- vpn (0)
- kafka (0)
- JVM垃圾回收机制 (0)
- 微信小程序 (0)
- Lua (0)
- Hystrix (0)
- Vue.js (0)
- mycat (0)
- Openresty (0)
- springBoot (0)
- 新分类 (0)
- guava (0)
- 大数据 (0)
- Sentinel (0)
最新评论
-
JackMacing:
中文怎么解决?
SpringMVC与iReport(JasperReports) 5.6整合开发实例 -
18335864773:
用pageoffice把.可以实现在线的文档操作.直接转pdf ...
转:使用jasperreport动态生成pdf,excel,html -
linhao0907:
推荐一款轻量开源的支付宝组件:https://github.c ...
关于Alipay支付宝接口(Java版) -
songronghu:
太好了,非常有用,谢谢分享~
Java ConcurrentModificationException 异常分析与解决方案 -
wzwahl36:
http://www.atool.org/json2javab ...
Java下利用Jackson进行JSON解析和序列化
上周写了篇基于spring3.0.5 mvc 简单用户管理实例 ( http://www.iteye.com/topic/1072244 ) ,反应还不错,本周闲来无事(外面又在下 雨 淹了不少地方啊)就试了一下Spring3 MVC + jQuery easyUI 做的ajax版本用户管理,因为之前做过一个项目是struts2 + jQuery easyUI 做的。对比了一下,发现 Spring3 MVC确实是比struts2方便啊,特别是对ajax的支持上,转换JSON内置了jackson,太方便了。还是先把jar包帖出来吧
还是要先配置web.xml文件,如下:
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <filter> <filter-name>Set Character Encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value><!-- 强制进行转码 --> </init-param> </filter> <filter-mapping> <filter-name>Set Character Encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- 默认所对应的配置文件是WEB-INF下的{servlet-name}-servlet.xml,这里便是:spring3-servlet.xml --> <servlet> <servlet-name>spring3</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring3</servlet-name> <!-- 这里可以用 / 但不能用 /* ,拦截了所有请求会导致静态资源无法访问,所以要在spring3-servlet.xml中配置mvc:resources --> <url-pattern>/</url-pattern> </servlet-mapping>
然后在applicationContext.xml中简单配置一下数据源和sessionFactory还有声明一下事务处理,这个和之前那一版是一样的,如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd" default-autowire="byName"> <!-- 注意上面的default-autowire="byName",如果没有这个声明那么HibernateDaoSupport中的sessionFactory不会被注入 --> <!-- 约定优于配置,约定优于配置 --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"></property> <property name="username" value="root"></property> <property name="password" value="root"></property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="mappingDirectoryLocations"> <list><!-- 这里直接映射的pojo类所在的包,简单方便不用没次加一个pojo类都需要到这里来添加 --> <value>classpath:com/fsj/spring/model</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> <prop key="hibernate.show_sql"> true </prop> </props> </property> </bean> <!-- 自动扫描组件,这里要把web下面的 controller去除,他们是在spring3-servlet.xml中配置的,如果不去除会影响事务管理的。--> <context:component-scan base-package="com.fsj.spring"> <context:exclude-filter type="regex" expression="com.fsj.spring.web.*"/> </context:component-scan> <!-- 下面是配置声明式事务管理的,个人感觉比用注解管理事务要简单方便 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> <aop:config> <aop:advisor pointcut="execution(* com.fsj.spring.service.*Service.*(..))" advice-ref="txAdvice"/> </aop:config> <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="query*" read-only="true"/> <tx:method name="find*" read-only="true"/> <tx:method name="load*" read-only="true"/> <tx:method name="*" rollback-for="Exception"/> </tx:attributes> </tx:advice> </beans>
最后需要配置的就是spring mvc的配置文件spring3-servlet.xml了,这个和非ajax的版本稍微有点不一样,加入了对json数据转换的配置,因为我用的数据传输都是json类型的数据,如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" default-autowire="byName">
<!-- default-autowire="byName",约定优于配置,约定优于配置 -->
<!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd -->
<mvc:resources mapping="/img/**" location="/img/"/>
<mvc:resources mapping="/js/**" location="/js/"/>
<mvc:resources mapping="/css/**" location="/css/"/>
<mvc:resources mapping="/html/**" location="/html/"/>
<!--
①:对web包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能
-->
<context:component-scan base-package="com.fsj.spring.web" />
<!--
②:启动Spring MVC的注解功能,完成请求和注解POJO的映射,添加拦截器,类级别的处理器映射
-->
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<property name="interceptors">
<list>
<bean class="com.fsj.spring.util.MyHandlerInterceptor"/>
</list>
</property>
</bean>
<!--
②:启动Spring MVC的注解功能,完成请求和注解POJO的映射,
配置一个基于注解的定制的WebBindingInitializer,解决日期转换问题,方法级别的处理器映射
-->
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="cacheSeconds" value="0" />
<property name="webBindingInitializer">
<bean class="com.fsj.spring.util.MyWebBinding" />
</property>
<!-- 配置一下对json数据的转换 -->
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
</list>
</property>
</bean>
<!--
③:对模型视图名称的解析,即在模型视图名称添加前后缀
InternalResourceViewResolver默认的就是JstlView所以这里就不用配置viewClass了
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/view/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
主页面用了easyui-layout,简单分为了上、左、中三部分,左边的菜单用的easyui-accordion,中间的主页面没有用iframe,就是一个普通的div就可以完成之前要用的iframe的功能哦,还是帖出来吧:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ include file="/taglibs.jsp" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>spring3</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <script type="text/javascript"> jQuery.ajaxSetup({cache:false});//ajax不缓存 jQuery(function($){ }); function setmain(title,href){ $(".combo-panel").parent(".panel").remove(); //清楚所有class为combo-panel的class为panel的父元素,解决combobox在页面缓存的问题 var centerURL = href; var centerTitle = title; $('body').layout('panel','center').panel({ title:"所在位置:"+centerTitle, href:centerURL }); $('body').layout('panel','center').panel('refresh'); return false; } //弹出窗口 function showWindow(options){ jQuery("#MyPopWindow").window(options); } //关闭弹出窗口 function closeWindow(){ $("#MyPopWindow").window('close'); } </script> </head> <!-- easyui-layout 可分上下左右中五部分,中间的是必须的,支持href,这样就可以不用iframe了 --> <body class="easyui-layout" id="mainBody"> <!-- 上 --> <div region="north" split="false" style="height:100px;text-align: center;" border="false"> <h1>欢迎: ${userSessionInfo.name}</h1> </div> <!-- 左--> <div region="west" class="menudiv" split="true" title="系统菜单" style="width:200px;overflow:hidden;"> <div id="menuDiv" class="easyui-accordion" fit="false" border="false" animate="false"> <div title="用户管理" style="overflow:hidden;"> <ul> <li id="rightLi${child.id}" style="cursor: pointer;" onclick="setmain('用户管理','${ctx}/user/list')" >用户管理</li> </ul> <ul> <li id="rightLi${child.id}" style="cursor: pointer;" onclick="setmain('用户管理','${ctx}/user/list')" >用户管理</li> </ul> <ul> <li id="rightLi${child.id}" style="cursor: pointer;" onclick="setmain('用户管理','${ctx}/user/list')" >用户管理</li> </ul> </div> <div title="部门管理" style="overflow:hidden;"> <ul> <li id="rightLi${child.id}">部门管理</li> <li id="rightLi${child.id}">部门管理</li> </ul> </div> <div title="XXX管理" style="overflow:hidden;"> <ul> <li id="rightLi${child.id}">XXX管理</li> <li id="rightLi${child.id}">XXX管理</li> </ul> </div> <div title="XXX管理" style="overflow:hidden;"> <ul> <li id="rightLi${child.id}">XXX管理</li> <li id="rightLi${child.id}">XXX管理</li> <li id="rightLi${child.id}">XXX管理</li> </ul> </div> </div> </div> <!-- 中 --> <div region="center" class="maindiv" title="所在位置: 首页" style="overflow-x:hidden;padding: 0px;" href="${ctx}/html/welcome.html" ></div> <div id="MyPopWindow" modal="true" shadow="false" minimizable="false" cache="false" maximizable="false" collapsible="false" resizable="false" style="margin: 0px;padding: 0px;overflow: auto;"></div> </body> </html>
这样点击用户管理就可以在center层中打开用户列表了,个人感觉效果还不错,比jQuery UI要漂亮一些,用着也很方便。
中间主页面的代码也很简单,用到了jQeury easyUI的datagrid、combogrid等,用法很简单,关键就是json数据,另外还用到了最好用的日期控件My97DatePicker:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <html> <head> <script type="text/javascript"> jQuery(function($){ $('#userTable').datagrid({ title:'用户列表', //标题 method:'post', iconCls:'icon-edit', //图标 singleSelect:false, //多选 height:360, //高度 fitColumns: true, //自动调整各列,用了这个属性,下面各列的宽度值就只是一个比例。 striped: true, //奇偶行颜色不同 collapsible:true,//可折叠 url:"user/queryList", //数据来源 sortName: 'user.id', //排序的列 sortOrder: 'desc', //倒序 remoteSort: true, //服务器端排序 idField:'uid', //主键字段 queryParams:{}, //查询条件 pagination:true, //显示分页 rownumbers:true, //显示行号 columns:[[ {field:'ck',checkbox:true,width:2}, //显示复选框 {field:'user.name',title:'名字',width:20,sortable:true, formatter:function(value,row,index){return row.user.name;} //需要formatter一下才能显示正确的数据 }, {field:'user.age',title:'年龄',width:20,sortable:true, formatter:function(value,row,index){return row.user.age;} }, {field:'user.birthday',title:'生日',width:30,sortable:true, formatter:function(value,row,index){return row.user.birthday;} }, {field:'user.deptId',title:'部门',width:30,sortable:true, formatter:function(value,row,index){ return row.deptName; //该列的值是deptId,显示的是deptName } } ]], toolbar:[{ text:'新增', iconCls:'icon-add', handler:function(){ addrow(); } },'-',{ text:'更新', iconCls:'icon-edit', handler:function(){ updaterow(); } },'-',{ text:'删除', iconCls:'icon-remove', handler:function(){ deleterow(); } },'-'], onLoadSuccess:function(){ $('#userTable').datagrid('clearSelections'); //一定要加上这一句,要不然datagrid会记住之前的选择状态,删除时会出问题 } }); //下拉表格初始化,这个东西在ajax下要尽量少用,太变态了,每加载一次就会重新创建一次,隐藏在页面上, //时间一长效率很低,用firebug一看页面上有几十个同样的层保存着下拉框中的内容,只有整个页面全部刷新才清除。 //不知道新版本修正了没有,我目前的做法是点击菜单的时候手动清除一下。 $('#deptCombo').combogrid({ idField:'id', //ID字段 textField:'name', //显示的字段 url:"dept/queryAll", fitColumns: true, striped: true, editable:false,//不可编辑,只能选择 columns:[[ {field:'code',title:'编号',width:100}, {field:'name',title:'名称',width:150} ]] }); }); //新增 function addrow(){ showWindow({ title:'增加用户信息', href:'user/popWindow', width:300, height:250, onLoad: function(){ $('#userForm').form('clear'); } }); } //更新 function updaterow(){ var rows = $('#userTable').datagrid('getSelections'); //这里有一个jquery easyui datagrid的一个小bug,必须把主键单独列出来,要不然不能多选 if(rows.length==0){ $.messager.alert('提示',"请选择你要更新的用户",'info'); return; } if(rows.length > 1){ $.messager.alert('提示',"只能选择一位用户进行更新",'info'); return; } showWindow({ title:'更新用户信息', href:'user/popWindow', width:300, height:250, onLoad: function(){ //自动将数据填充到表单中,无需再查询数据库 ,这里需要注意: //如果用的是struts2,它的表单元素的名称都是user.id这样的,那load的时候不能加.user要.form('load', rows[0]); //而spring mvc中表单元素的名称不带对象前缀,直拉就是id,所以这里load的时候是:.form('load', rows[0].user) $("#userForm").form('load', rows[0].user); } }); } //删除 function deleterow(){ $.messager.confirm('提示','确定要删除吗?',function(result){ if (result){ var rows = $('#userTable').datagrid('getSelections'); var ps = ""; $.each(rows,function(i,n){ if(i==0) ps += "?uid="+n.uid; else ps += "&uid="+n.uid; }); $.post('user/delete'+ps,function(data){ $('#userTable').datagrid('reload'); $.messager.alert('提示',data.mes,'info'); }); } }); } //表格查询 function searchUser(){ var params = $('#userTable').datagrid('options').queryParams; //先取得 datagrid 的查询参数 var fields =$('#queryForm').serializeArray(); //自动序列化表单元素为JSON对象 $.each( fields, function(i, field){ params[field.name] = field.value; //设置查询参数 }); $('#userTable').datagrid('reload'); //设置好查询参数 reload 一下就可以了 } //清空查询条件 function clearForm(){ $('#queryForm').form('clear'); searchUser(); } </script> </head> <body> <form id="queryForm" style="margin:10;text-align: center;"> <table width="100%"> <tr> <td>名字:<input name="name" style="width: 200"></td> <td>年龄:<input class="easyui-numberspinner" name="age" min="1" max="120" increment="1" style="width:200px;"></input></td> <td align="center"><a href="#" onclick="clearForm();" class="easyui-linkbutton" iconCls="icon-search">清空</a></td> </tr> <tr> <td>生日:<input name="birthday" style="width: 200" class="Wdate" onClick="WdatePicker()"></td> <td>部门:<input id="deptCombo" name="deptId" style="width: 200"></td> <td align="center"><a href="#" onclick="searchUser();" class="easyui-linkbutton" iconCls="icon-search">查询</a></td> </tr> </table> </form> <div style="padding:10" id="tabdiv"> <table id="userTable"></table> </div> </body> </html>
这里不得不说,用spring3 MVC对json的转换直接太方便了,只需要在上面说的spring3-servlet.xml中配置一下就可以,后台只需要@ResponseBody一个注解就OK,可以返回map、list等多种数据类型,spring会自动转换为json对象的,比struts2要方便多了,用struts2要<package name="def" extends="json-default" >,还要用json类型的result:<result name="success" type="json"><param name="root">jsonData</param></result>,还要自己组织jsonData,Controller类如下:
@Controller @RequestMapping("/user") public class UserController { @RequestMapping(value="/list",method=RequestMethod.GET) public String list(Model model) throws Exception { model.addAttribute("deptList", deptService.getDeptList()); return "user/list"; } @RequestMapping(value="/queryList",method=RequestMethod.POST) @ResponseBody public Map<String, Object> queryList(DataGridModel dgm,TUser user) throws Exception{ //spring太给力了,可以自动装配两个对象 会自动的装返回的Map转换成JSON对象 //return userService.getPageListByExemple(dgm, user); return userService.getPageList(dgm, user); } @RequestMapping(value="/popWindow",method=RequestMethod.GET) public String popWindow() throws Exception{ return "user/popWindow"; } @RequestMapping(value="/addOrUpdate",method=RequestMethod.POST) @ResponseBody public Map<String, String> addOrUpdate(TUser user) throws Exception{ //spring会利用jackson自动将返回值封装成JSON对象,比struts2方便了很多 Map<String, String> map = new HashMap<String, String>(); try { userService.addOrUpdate(user); map.put("mes", "操作成功"); } catch (Exception e) { e.printStackTrace(); map.put("mes", "操作失败"); throw e; } return map; } @RequestMapping(value="/delete",method=RequestMethod.POST) @ResponseBody public Map<String, String> delete(@RequestParam("uid") List<Integer> uid )throws Exception{ //spring mvc 还可以将参数绑定为list类型 Map<String, String> map = new HashMap<String, String>(); try { userService.deleteUsers(uid); map.put("mes", "删除成功"); } catch (Exception e) { e.printStackTrace(); map.put("mes", "删除失败"); throw e; } return map;//重定向 } private IDeptService deptService; public IDeptService getDeptService() { return deptService; } public void setDeptService(IDeptService deptService) { this.deptService = deptService; } private IUserService userService; public IUserService getUserService() { return userService; } public void setUserService(IUserService userService) { this.userService = userService; } }
怎么样是不是很方便,下面提供了实例项目的下载,实例中没有jar包,jar请依据图中自己添加。
发表评论
-
spring boot整合mybatis+mybatis-plus
2019-02-08 23:58 0https://www.cnblogs.com/lia ... -
Spring点滴 Spring实战系列
2018-11-14 18:06 0https://www.cnblogs.com/si ... -
易百教程
2017-06-07 14:00 0http://www.yiibai.com/lua/l ... -
关于Spring Data redis几种对象序列化的比较
2016-09-06 15:01 0问题 最近在整一个spring data r ... -
spring 结合 Redis 例子,简单入门例子
2016-09-05 10:51 0http://oyhk.iteye.com/blog/ ... -
spring与redis集成之aop整合方案
2016-09-05 10:20 0http://blog.csdn.net/zhann ... -
Dubbo搭建例子
2016-09-03 17:35 0http://blog.csdn.net/lzxads ... -
集群部署服务和消费者测试(1)
2016-09-03 17:10 0修改dp和dc程序为注册到集群zookeeper中 ... -
zookeeper 服务器安装 单例和集群
2016-09-03 17:02 0http://blog.csdn.net/fangxi ... -
dubbo起步搭建Spring+SpringMVC+dubbo的开发环境
2016-09-03 16:49 0http://blog.csdn.net/fangxi ... -
Memcached与Spring AOP构建数分布式据库前端缓存框架
2016-09-02 22:19 0由于上一篇有介绍了Memcached缓存,并集群部 ... -
Dubbo与Zookeeper、SpringMVC整合和使用(负载均衡、容错)
2016-09-02 22:11 0原文链接:http://blog.csdn.net/cong ... -
重要,Spring注解事务无效 和 Cannot add foreign key constraint
2016-02-20 02:18 0Cannot add foreign key con ... -
Spring2.5.6中定时器Quarz的使用
2015-10-08 10:07 679下面说明详细的配置: applicationContext ... -
spring ioc原理(看完后大家可以自己写一个spring)
2015-08-07 14:43 0http://blog.csdn.net/it_ma ... -
Spring技术内幕——深入解析Spring架构与设计原理(二)AOP
2015-08-04 19:32 0http://jiwenke.iteye.com/ ... -
spring源码分析之——spring aop原理
2015-08-04 19:18 0aop是spring中非常有趣的一个功能。如果应用得当会大有 ... -
自我分析-Spring AOP
2015-08-04 19:13 0aop是spring中非常有趣的一个功能。如果应用得当会大有 ... -
利用AbstractRoutingDataSource实现动态数据源切换
2015-07-15 14:44 0利用AbstractRoutingDataSource实现 ... -
spring 使用AbstractRoutingDataSource自定义动态数据源时的事务处理
2015-07-15 14:38 0spring 使用AbstractRoutingDataSo ...
相关推荐
《构建基于Spring3 MVC、MyBatis和jQuery EasyUI的权限管理系统》 在现代Web开发中,集成多种技术构建高效且功能丰富的应用是常见的实践。本项目实例——"spring3 mvc + mybatis + jquery easyui例子",就是这样一...
在本项目中,我们主要探讨的是如何利用Spring MVC框架与jQuery EasyUI库来实现一个基本的CRUD(创建、读取、更新、删除)功能。Spring MVC是Java平台上的一个强大的MVC(Model-View-Controller)框架,它提供了一个...
在提供的资源包中,可能包含了一个已经配置好并可以运行的示例项目,包括数据库脚本、Spring MVC的配置文件、MyBatis的Mapper和实体类、以及使用JQueryEasyUI编写的前端页面。这样的例子可以帮助初学者快速理解这三...
在本项目中,"Spring+SpringMVC+Mybatis+Maven+bootstrap+ajax+jQuery整合开发简单的员工后台管理系统",我们看到一个基于Java技术栈的Web应用开发实例。这个系统利用了多个核心技术来构建一个功能完备的员工管理...
【标题】"spring3mvc-jQuery-easyUI做的ajax版本用户管理系统" 提供了一个使用SpringMVC、jQuery和easyUI框架构建的Web应用程序实例,它着重于实现基于Ajax的用户管理功能。这个项目展示了如何将这三个强大的技术...
标题 "Spring+Hibernate+Struts+ajax+jQuery easyUI" 提到的是一个经典的Java Web开发技术栈,这个组合被广泛用于构建复杂的企业级应用程序。让我们深入探讨这些技术及其相互作用。 1. **Spring**:Spring 是一个...
SSH+jQuery EasyUI后台管理系统是一种基于Struts2(S)、Spring(S)和Hibernate(H)三大开源框架的Web应用程序开发模式,结合jQuery EasyUI前端框架,构建出高效、简洁且具有现代感的后台管理界面。这个系统设计的...
总的来说,"struts2+spring+mybatis+easyui"的实现是一个标准的Java Web项目结构,它利用Maven进行构建管理,通过整合四个组件,实现了后端的业务逻辑处理、数据访问和前端的用户界面展示。这种架构在实际开发中具有...
综上所述,这个项目是一个综合性的企业网站演示,利用了Spring.NET、NHibernate、ASP.NET MVC、jQuery 和 easyUI 这些技术栈,展示了如何将开源框架整合在一起,构建一个中英文双语的小型企业网站。通过学习这个项目...
Spring+SpringMVC+MyBatis+Maven+EasyUI是一个经典的Java Web开发技术栈,广泛应用于企业级应用系统开发。这个技术组合提供了完整的后端服务处理、前端展示以及项目构建管理的能力。以下是对这些技术及其整合方式的...
该项目是一个基于Spring 3、Spring MVC、Spring JDBC和jQuery EasyUI的登录系统示例,旨在展示如何整合这些技术来构建一个完整的Web应用。下面将详细解释这些技术及其在项目中的作用。 1. **Spring 3**: Spring是...
标题 "spring mvc+mybatis+easyui" 暗示了这个项目是基于Spring MVC、MyBatis和EasyUI这三个技术栈构建的Web应用程序。下面将分别介绍这些技术及其结合使用时的关键知识点。 **Spring MVC** Spring MVC是Spring框架...
这个"spring+spring mvc+mybatis+easyui整合demo"项目是针对这些技术的一个集成示例,旨在帮助开发者了解如何将它们协同工作以构建一个功能完备的Web应用程序。 首先,Spring框架作为基础,它提供了依赖注入(DI)...
EasyUI**:EasyUI是一个基于jQuery的UI框架,提供了丰富的组件和精美的主题,用于快速构建用户界面。在"eyou"OA项目中,EasyUI被用来创建直观、响应式的前端界面,通过Ajax技术和Json实现前后端的数据交换,提高...
标题 "spring mvc mybatis jqueryeasyui" 描述了一个基于Java技术栈的Web应用程序开发场景,其中Spring MVC作为控制层框架,MyBatis作为数据访问层框架,jQuery和EasyUI则用于前端交互和界面设计。下面将详细阐述...
- **增加(Create)**: 用户填写新联系人的信息,点击“保存”按钮,触发jQuery EasyUI的AJAX请求,将数据发送到Struts2 Action,由Spring托管的服务处理数据的插入操作,完成后返回成功信息。 - **查询(Read)**: ...
标题 "整合spring data jpa + spring mvc + easyui" 暗示了这个项目是关于构建一个基于Java的Web应用程序,使用了Spring框架的重要组件,包括Spring Data JPA、Spring MVC以及EasyUI。让我们详细了解一下这些技术...
JQuery EasyUI 做的一个对书籍增删改查的例子”表明这是一个使用Struts2(SSH框架的一部分)、Spring和Hibernate(SSH框架的另外两个部分)结合JQuery EasyUI创建的Web应用程序示例,主要用于图书管理系统的CRUD...
1. **SSH+jQuery+DWR+EasyUI 实战**:本文档通过一系列的实战案例展示了如何将 Struts2、Spring3、Hibernate4 与 DWR、jquery2.x 和 easyUI1.3.x 结合起来开发实际的应用。 2. **实战案例详解**: - SSH 架构集成...
在这里,"springmvc+mybatis+jqueryeasyui后台管理模板"提供了一个完整的后台管理系统的基础结构,包括登录、权限控制、数据展示、数据编辑等功能模块。开发者可以根据自己的需求对这个模板进行定制,添加或修改功能...