我正在用Java和Glassfish 4编写RESTful Web服务。我成功设置了jdbc领域。我可以通过web.xml锁定某些URL。
现在,我想拥有一种资源,无论用户是否经过授权,它都可以更改其值。例:
**Request:**
exampleuser/information
GET without BASIC Auth
**Response:**
username: example user
email: [email protected]
**Request:**
exampleuser/information
GET with BASIC Auth as exampleuser
**Response:**
username: example user
email: [email protected]
born: 1.1.1111
password: test
所以我想以某种方式检查该方法是否授权用户,并基于此我想返回其他信息。那怎么可能?
最佳答案
看看这个link,它应该对您有帮助