| | |
| | | @RequestMapping("/") |
| | | public void index(HttpServletResponse response) { |
| | | try{ |
| | | response.sendRedirect(contextPath+"/views/index.html"); |
| | | response.sendRedirect(contextPath+"/views/index1.html"); |
| | | } catch (Exception ex){ |
| | | ex.printStackTrace(); |
| | | } |
| | |
| | | public void monitor(@PathVariable("ledId") Integer ledId, |
| | | HttpServletResponse response) { |
| | | try{ |
| | | response.sendRedirect(contextPath+"/views/monitor/monitor0.html"+ "?" + "ledId=" + ledId); |
| | | response.sendRedirect(contextPath+"/views/monitor/monitor0.html"+ "?" + "crnId=" + 2 + "&" + "ledId=" + ledId); |
| | | } catch (Exception ex){ |
| | | ex.printStackTrace(); |
| | | } |