我正在尝试将我的java servlet部署到弹性beanstalk,并且它始终在运行状况检查URL上失败。我有一个运行状况检查servlet,其代码如下
公共类HealthCheck扩展了HttpServlet { private static final long serialVersionUID = 1L;
public HealthCheck() {
super();
// TODO Auto-generated constructor stub
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setStatus(HttpServletResponse.SC_OK);
}
我认为这会奏效,但我猜不会。我正在使用ecplise EE并使用它自动生成的web.xml和url-path为/ HealthCheck。任何人都知道为什么这对我不起作用?谢谢!
答案 0 :(得分:1)
你应该试试这些: