WebService 笔记

发布时间:2020-07-19 20:54:37 作者:xiaosawuhen
来源:网络 阅读:529

WebService服务端框架:jersey

WebService调用方式:jersey、http、spring RestTemplate


Server:

@Configuration
public class ApplicationConfig {
	@Named
	static class JerseyConfig extends ResourceConfig {
		public JerseyConfig() {
			this.packages("com.lenovo.li.content.controllers");
		}
	}

	@Bean
	public ObjectMapper objectMapper() {
		ObjectMapper objectMapper = new ObjectMapper();
		return objectMapper;
	}
}

Pom

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-jersey</artifactId>
		</dependency>

Controller

@Named
@Path("/Test")
public class RestController {

	@POST
	@Path("/get/{url}")
	@Produces(MediaType.APPLICATION_JSON)
	public Test getTestContent(@PathParam("url") final String url, @RequestBody Context context)
			throws JsonParseException, JsonMappingException, IOException {
	}
	
	@PUT
	@Path("/update/{url}")
	@Produces(MediaType.APPLICATION_JSON)
	public Test updateTestContent(@PathParam("url") final String url, @RequestBody Page page)
			throws JsonParseException, JsonMappingException, IOException {
	}
}

Client

public class TestClient{

	@Autowired
	RestTemplate restTemplate;
	
	public String getTestContent(String name, Context context) {
		ResponseEntity<String> response = restTemplate.postForEntity(url, context,String.class);
		return response.getBody();
	}

}

ClientXml

		<bean id="drHttpRequestFactory" class="org.springframework.http.client.HttpComponentsClientHttpRequestFactory"/>
		<bean id="restTemplate" class="org.springframework.web.client.RestTemplate" p:requestFactory-ref="drHttpRequestFactory" >
	        <property name="messageConverters">
	            <list>
	                <bean class="org.springframework.http.converter.StringHttpMessageConverter">
	                    <property name="supportedMediaTypes">
	                        <list>
	                            <value>text/plain;charset=UTF-8</value>
		                        <value>text/html;charset=UTF-8</value>  
		                        <value>application/json; charset=UTF-8</value>  
	                        </list>
	                    </property>
	                </bean>
	                <ref bean="mappingJackson2HttpMessageConverter"/>
	                
	                <bean class="org.springframework.http.converter.FormHttpMessageConverter"/>
	            </list>
	        </property>
		</bean>
		


推荐阅读:
  1. SQLServer搭建网站实例
  2. 项目中MySQL数据源转SQL server数据源Dual无效

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

web service bs

上一篇:【C语言基础】unsigned short类型用于循环的一个难点

下一篇:FW300R路由器自动断线换IP

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》