2 Log4j配置問題%c{1}:% 主要留意下 log4j.appender.stdout.layout.ConversionPattern = %d{ABSOLUTE} %5p %c{1}:%L - %m%nhtml
3.BootStrap 或者JqueryMobile 對IE支持的不夠友好,可能某些時刻效果沒法顯示那麼請嘗試添加如下代碼 爲了兼容IE http://www.myexception.cn/web/1457358.html <meta http-equiv="X-UA-Compatible" content="IE=edge">html5
<script src="https://oss.maxcdn.com/libs/html5shiv/3.6.2/html5shiv.js"></script>java
<script src="js/respond.src.js"></script>web
4.如下代碼能夠防止用戶未登錄就訪問頁面 <% //主頁中爲了防止沒有登錄就能訪問 User currentUser=(User)session.getAttribute("currentUser"); if(currentUser==null){ String contextPath=request.getContextPath(); response.sendRedirect(contextPath+"/login.jsp"); } %>session