标签: java rest cxfrs
我希望使用CXF获得Date个参数。
Date
以下代码适用于CXF 2.6.0,但不适用于CXF 3.0.0:
@POST @Path("/getPlayers") @Produces("application/json") public List<Player> getPlayers(@FormParam("birthDate") Date birthDate) throws Exception;
如果我将birthDate声明为字符串,则可以正常工作。
birthDate
我错过了什么?