`
seaboycs
  • 浏览: 127956 次
  • 性别: Icon_minigender_1
  • 来自: 南通
社区版块
存档分类
最新评论
文章列表
项目中要用到Rest的web service,提前做了一个Demo,做下笔记。 Demo 分2个项目,一个是restServer 一个是restClient, 都是Spring MVC架构。主要看代码:   Pojos: package com.pojo; import java.io.Serializable; public class Phone implements Serializable{ private static final long serialVersionUID = 1L; private String phoneNumber=&quo ...
Server: @RequestMapping(value = { "/hygiene/{phone}" }, method = {RequestMethod.POST },produces="application/json") @ResponseBody public PhoneResult hygiene(@PathVariable("phone")String phoneObject) { PhoneResult result = new PhoneResult(); try { ObjectM ...
我的一个项目中用到的Spring Security来验证用户合法性,公司里面是连接到LDAP server做验证的,自己又写了一套基于数据库的测试项目,给新手分享一下,也供日后自己回顾。   Spring 版本:3.1.0.RELEASE.jar 相关架包可以到官网下载,我用到了下面的架包(LIBS.JPG),有些可能不需要.   1. Spring 配置文件中添加:    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy ...
官方link: http://developer.baidu.com/wiki/index.php?title=docs/cplat/push/api/list
Global site tag (gtag.js) - Google Analytics