java8 + spring-boot で line bot を書きました callback は https://...:443/linebot に 必要情報は環境変数で jackson, httpclient, lombok 使用 try catch はノーポリシー controller @RestController public class LineBotController { @Autowired LineBotService botService; @RequestMapping(value = "/linebot") String index(HttpServletRequest request) throws RuntimeException { botService.sendToChannel(request); return "OK"; } } // callback