SSH 框架整合遇到的一些問題以及目前項目中遇到的一些常見問題解決方案彙總

  1. java.lang.ClassCastException: sun.proxy.$Proxy11 cannot be cast to分析 請參閱 http://www.2cto.com/kf/201307/228174.html 出現這樣的異常請參考以上網址 主要緣由是若是類沒有繼承或者實現UserService 那麼就能夠這樣用 UserServiceImpl dao = (UserServiceImpl) ctx.getBean("userService"); 不然UserService service= (UserService) ctx.getBean("userService");

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

相關文章
相關標籤/搜索