ERROR - error: [core] No more than one JAX-RS entity parameter is allowed (all other parameters must be annotated with one of the JAX-RS resource parameter annotations)

Error

error: [core] No more than one JAX-RS entity parameter is allowed (all other parameters must be annotated with one of the JAX-RS resource parameter annotations)

Error Type

Maven Build


Possible Cause

Resource Parameter has not been annotated properly with 
JAX-RS resource parameter annotations

Sample Code

@Path("/employeeInfo/{employeeId}/{deptId}")
@GET
public boolean getEmployeeInfo( Long employeeId, Long DeptId) { }


Possible Resolution

Annotate parameters with the proper annotations

@Path("/employeeInfo/{employeeId}/{deptId}")
@GET
public boolean getEmployeeInfo( @PathParam("employeeId")Long employeeId, 
                                                     @PathParam("deptId") Long DeptId) { }