需要为QueryParam生成getter和setter

时间:2015-03-29 23:35:13

标签: java hibernate rest jersey hibernate-mapping

我需要使用hibernate将Queryparam保存在数据库中。

为此,我需要生成参数的getter和setter。

在做同样的事情时,面对error(不能发布::::小于10的声誉)

public Response responseMsg( @PathParam("parameter") String parameter,
        @DefaultValue("Nothing to say") @QueryParam("firstname") String firstname ,@QueryParam("lastname") String lastname,@QueryParam("emailid") String emailid,@QueryParam("password") String password) {

请帮我解决这个问题。

我的想法,首先我需要创建POJO然后在setter中将Queryparam的值赋给POJO的变量。

1 个答案:

答案 0 :(得分:1)

首先创建实体类,即基于注释的类.U必须根据您的@queryparam属性创建属性。  在其中创建getter和setter。那么你可以使用Hibernate SessionFactory保存它。