上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 32 下一页
摘要: 项目页面登录框架 (1)index.jsp 转发到指定包下的页面 <jsp:forward page="/WEB-INF/page/menu/index.jsp"/> (2)menu/index.jsp 提供用户名和密码的登录页面 (3)menu/home.jsp 学会使用框架<FrameSet>和 阅读全文
posted @ 2017-01-20 15:17 kangjie 阅读(652) 评论(1) 推荐(0) 编辑
摘要: 错误信息: [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 阅读全文
posted @ 2017-01-17 18:33 kangjie 阅读(398) 评论(0) 推荐(0) 编辑
摘要: mysql根据配置文件会限制server接受的数据包大小。 mysql根据配置文件会限制server接受的数据包大小。 有时候大的插入和更新会受max_allowed_packet 参数限制,导致写入或者更新失败。 查看目前配置 show VARIABLES like '%max_allowed_p 阅读全文
posted @ 2017-01-17 12:21 kangjie 阅读(981) 评论(0) 推荐(0) 编辑
摘要: 1.登录页面: 将上一节中的页面放到/WEB-INF/page/目录下,需要登录后才能访问该页面: 对应页面:/WEB-INF/page/menu/home.jsp 创建elecMenuAction.java文件: 对应struts.xml文件 然后:登录后点击重新登录,退出首页 还有对应的load 阅读全文
posted @ 2017-01-17 11:05 kangjie 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 在eclipse里启动tomcat的时候出现以下的错误: Server Tomcat v6.0 at localhost was unable to start within 45 seconds. If the server requires more time, try increasing t 阅读全文
posted @ 2017-01-16 21:16 kangjie 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 底层方法封装:模糊查询,姓张的人 查询思路:select * from elec_text o #Dao层 where o.textName like '%张%' #Service层 and o.textRemark like '%张%' #Service层 order by o.textDate 阅读全文
posted @ 2017-01-11 11:59 kangjie 阅读(1798) 评论(1) 推荐(0) 编辑
摘要: 底层方法封装(CommonDaoImpl类) 测试类: 阅读全文
posted @ 2017-01-10 18:16 kangjie 阅读(330) 评论(0) 推荐(0) 编辑
摘要: MyBatis MyBatis 是支持普通 SQL 查询,存储过程和高级映射的优秀持久层框架。 MyBatis 消除了几乎所有的 JDBC 代码和参数的手工设置以及对结果集的检索。 MyBatis 可以使用简单的XML 或注解用于配置和原始映射,将接口和 Java 的 POJO( Plain Old 阅读全文
posted @ 2016-12-29 14:09 kangjie 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Eclipse快捷键大全(转载) Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt 阅读全文
posted @ 2016-12-27 14:09 kangjie 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Maven项目管理和构建自动化工具 Maven 使用惯例优于配置的原则 。它要求在没有定制之前,所有的项目都有如下的结构: 一个 maven 项目在默认情况下会产生 JAR 文件,另外 ,编译后 的 classes 会放在 basedir/target/classes 下面, JAR 文件会放在 $ 阅读全文
posted @ 2016-12-25 21:40 kangjie 阅读(174) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 32 下一页