摘要: 在开发过程中,有后台服务访问远程rest接口的需求,采用spring 框架中的RestTemplate类实现。RestTemplate类位于org.springframework.web.client包中,提供Http的各类方法:如Get,Head,Post,Put,Delete等,用于访问rest接口,本文以get方法举个简单的例子,介绍RestTemplate类的使用。RestTemplate有两个构造方法,分别是:public RestTemplate() { /** ...初始化过程 */}public RestTemplate(ClientHttpRequ... 阅读全文
posted @ 2013-05-17 09:49 yanzhenxing 阅读(20592) 评论(1) 推荐(0) 编辑
摘要: 在spring 3.0中,可以通过使用@value,对一些如xxx.properties文件中的变量,进行键值对的注入例如:1 首先在applicationContext.xml中加入: <beans xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd 阅读全文
posted @ 2013-05-17 09:48 yanzhenxing 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 例如需要实现一个形如下面的sql:select * from table where a='a' and b='b' order by c asc,d desc;就是根据两个条件进行排序。在spring data for jpa 中,存在一个pageable接口,是对查询分页的一个利器。pageable实现类的构造方法中有个Sort参数,可以按照列属性进行排序。通过查看Sort类的构造方法,我们对Sort这个类进行一下分析,Sort类中存在一下几个构造方法:1.publicSort(Order... orders);2.publicSort(List<Or 阅读全文
posted @ 2013-05-17 09:47 yanzhenxing 阅读(17719) 评论(2) 推荐(1) 编辑