@PathParam和@QueryParam传值的区别

1. @PathParam ,在url后面直接在斜杠后面添加参数值,例如:http://localhost:80/Test/001 ;
2. @QueryParam ,在url后面添加“键值对”形式的参数,例如:http://localhost:80/Test?id=001 ;

你可能感兴趣的:(java)