
Spring
iteye_4442
这个作者很懒,什么都没留下…
展开
-
Spring MVC的例子使用
/** * @Component,@Service,@Controller,@Repository注解的类 * * @Service(逻辑层使用)rt.jar @Repository(Dao层使用) * * @Controller(View使用也就是action中的类) spring.jar夹包下 * * @Autowired自动装配 * @...原创 2012-01-03 09:52:20 · 101 阅读 · 0 评论 -
Spring quartz定时结合Jsoup和Dom4j使用解析百度地图API
<?xml version="1.0" encoding="utf-8" ?><GeocoderSearchResponse> <status>0</status> <result> <location> <lat>39.9834240712013-07-15 21:15:36 · 189 阅读 · 0 评论 -
springmvc+mybatis+pagehelper分页插件整合AbstractRoutingDataSource动态切换数据源(含例子代码) ...
一、前期工作1)开发工具Eclipse+maven+jdk1.6以上2)Tomcat服务器3)技术架构Spring+Mybatis 二、在eclipse一个Maven的Web工程(略)不懂的同学请参考博客http://www.cnblogs.com/leiOOlei/p/3361633.html 三、web.xml整合Springmvc和dr...2016-07-08 10:04:55 · 755 阅读 · 0 评论 -
SpringMVC+IbatIS注解整合Demo
application-mvc.xml<?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:c...2014-03-30 13:44:41 · 186 阅读 · 0 评论 -
SpringMVC+Hibernate全注解整合
package com.org.service.impl;import java.util.List;import javax.annotation.Resource;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype....2014-05-05 14:36:15 · 129 阅读 · 0 评论 -
使用SpringMVC+hibernate实现Bootstrap分页
package com.org.utils.taglib;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.net.URLEncoder;import javax.servlet.jsp.JspException;import javax.servle...2014-05-06 14:00:10 · 160 阅读 · 0 评论 -
springmvc+Ibatis+Bootstrap自定义标签分页+登录模版
package com.org.service.impl;import java.util.List;import java.util.Map;import javax.annotation.Resource;import org.springframework.stereotype.Service;import com.org.dao.IUserDao;...2014-05-27 14:36:10 · 194 阅读 · 0 评论 -
jdbcTemplate整合SpringMVC
package com.org;import javax.annotation.PostConstruct;import javax.annotation.Resource;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.core.support.Jdbc...2014-06-26 12:12:05 · 169 阅读 · 0 评论