01 2017 档案
摘要:项目页面登录框架 (1)index.jsp 转发到指定包下的页面 <jsp:forward page="/WEB-INF/page/menu/index.jsp"/> (2)menu/index.jsp 提供用户名和密码的登录页面 (3)menu/home.jsp 学会使用框架<FrameSet>和
阅读全文
摘要:错误信息: [Err] 1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* wa
阅读全文
摘要:mysql根据配置文件会限制server接受的数据包大小。 mysql根据配置文件会限制server接受的数据包大小。 有时候大的插入和更新会受max_allowed_packet 参数限制,导致写入或者更新失败。 查看目前配置 show VARIABLES like '%max_allowed_p
阅读全文
摘要:1.登录页面: 将上一节中的页面放到/WEB-INF/page/目录下,需要登录后才能访问该页面: 对应页面:/WEB-INF/page/menu/home.jsp 创建elecMenuAction.java文件: 对应struts.xml文件 然后:登录后点击重新登录,退出首页 还有对应的load
阅读全文
摘要:在eclipse里启动tomcat的时候出现以下的错误: Server Tomcat v6.0 at localhost was unable to start within 45 seconds. If the server requires more time, try increasing t
阅读全文
摘要:底层方法封装:模糊查询,姓张的人 查询思路:select * from elec_text o #Dao层 where o.textName like '%张%' #Service层 and o.textRemark like '%张%' #Service层 order by o.textDate
阅读全文
摘要:底层方法封装(CommonDaoImpl类) 测试类:
阅读全文