我正在编写一个脚本,通过使用CURL传递参数,使用PHP登录远程Spring Java应用程序。登录工作正常,我得到了所需的curl响应,但是我无法通过浏览器以登录用户身份浏览应用程序。我怎样才能实现它?这是我的代码。
@ResponseBody
@RequestMapping(value = "/category/all", method = {POST, GET})
public ListCategory all() {
ListCategory response = new ListCategory();
response.setListCategories(categoryDAO.selectAllCategory());
response.setResponseStatus(1);
//failedMessage = messageSource.getMessage("messages.customer.notActive", new Object[]{},Locale.getDefault());
response.setResponseMessage(messageSource.getMessage("messages.agent.notAccessMenuAgent",
new Object[]{},Locale.getDefault()));
//activity Logging
CommonMobileAgentUtil.activityLogging(response.getResponseStatus());
return response;
}