Fork me on GitHub
上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 在javascript中添加该方法 使用该方法就可以进行转换 var jso = $("#表单名(form的id属性)").serializeJson(); json对象转换String JSON.stringify(lf) 阅读全文
posted @ 2017-12-24 13:11 TopTime 阅读(1832) 评论(1) 推荐(0) 编辑
摘要: spring整合quartz框架 1.创建maven工程 2.导入jar包(pom.xml) 3.创建xml文件 4.创建applicationContext.xml文件 5.编写代码 创建一个service 方法一: 创建helloJob 方法二: 创建一个JobFactory类 修改applic 阅读全文
posted @ 2017-12-23 19:46 TopTime 阅读(657) 评论(0) 推荐(0) 编辑
摘要: quartz 任务调度框架 简单的说:就是在特定的时间,干指定的事件,然后具体到某个对象去做 quartz初之体验: 1.pom.xml文件(导入jar包) 2. hello 创建一个任务调度 在上面的基础上进行添加触发器和工作对象 创建一个类来实现job方法 使用触发器来调用工作对象 使用上面的会 阅读全文
posted @ 2017-12-23 13:37 TopTime 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1.pom.xml 2.appcationContext.xml文件 3.applicationContext-mq.xml 4.applicationContext-mq-consumer.xml 5.包结构 ConsumerQuery01 ConsumerQuery02 ConsumerTopi 阅读全文
posted @ 2017-12-20 21:13 TopTime 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 消息队列activeMq, 节省响应时间,解决了第三方响应时间长的问题让其他客户可以继续访问, 安装activeMq 创建一个maven java project 在浏览器中访问路径 http://localhost:8161/ 登录名admin 密码为admin 1.pom.xml文件 生产任务 阅读全文
posted @ 2017-12-20 18:55 TopTime 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1.pom.xml文件 2.、applicationContext.xml applicationContext-cache.xml 测试类 测试成功 阅读全文
posted @ 2017-12-19 18:50 TopTime 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个maven工程 2.进入redis官网 3.找到 redis是一个非关系型的数据库,全名是 not only sql,它的产生不能完全取代关系型数据库,只是关系型数据库的一个补充。 特点:解决高并发,高可用,高可扩展,大数据存储等一系列问题的解决方案。 非关系型数据的分类 Tokyo C 阅读全文
posted @ 2017-12-19 16:51 TopTime 阅读(243) 评论(0) 推荐(0) 编辑
摘要: And findByLastnameAndFirstname … where x.lastname = ?1 and x.firstname = ?2 Or findByLastnameOrFirstname … where x.lastname = ?1 or x.firstname = ?2 I 阅读全文
posted @ 2017-12-15 15:30 TopTime 阅读(2858) 评论(0) 推荐(0) 编辑
摘要: spring整合webservice 1.pom.xml文件 2.web.xml文件 applicationContext.xml文件 创建服务接口 创建服务的实现 测试服务 使用webService java rs的测试类进行测试 项目源码下载目录 https://gitee.com/blurwr 阅读全文
posted @ 2017-12-14 20:14 TopTime 阅读(412) 评论(0) 推荐(0) 编辑
摘要: webservice之rs(helloworld) 1.pom.xml文件 2.创建服务接口 3.创建服务实现类 4.发布服务 测试项目的pom.xml文件 测试发布的服务 User类 阅读全文
posted @ 2017-12-14 18:18 TopTime 阅读(264) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页