master
wangning 8 years ago
parent 58a2011053
commit 418ea1dca5

@ -29,7 +29,13 @@ 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.getRequestURL().toString()); logger.info("kiramo"+req.getContextPath());
logger.info("kiramo"+req.getQueryString());
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