master
wangning 6 years ago
parent 418ea1dca5
commit b22b39cc4e

@ -29,13 +29,10 @@ public class MailCallBackController {
@RequestMapping(value = "/callback/dropped", method = RequestMethod.POST) @RequestMapping(value = "/callback/dropped", method = RequestMethod.POST)
public void contractList(HttpServletRequest req, HttpServletResponse res) throws Exception { public void contractList(HttpServletRequest req, HttpServletResponse res) throws Exception {
logger.info("kiramo"+req.getContextPath()); req.getParameterMap().entrySet().forEach(p->{
logger.info("kiramo"+req.getQueryString()); logger.info(p.getKey()+ ":"+ p.getValue());
req.getParameterMap().values().forEach(p->{
for (String s : p) {
logger.info(s);
}
}); });
// logger.info("kira"+content); // logger.info("kira"+content);
// mailService.dealDroppedNotify(content); // mailService.dealDroppedNotify(content);
} }

Loading…
Cancel
Save