摘要: 报错信息如下: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException 阅读全文
posted @ 2020-09-09 16:46 F_sinclair 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 表达式语言(Expression Language),或称EL表达式,简称EL,是Java中的一种特殊的通用编程语言,借鉴于JavaScript和XPath。主要作用是在Java Web应用程序嵌入到网页(如JSP)中,用以访问页面的上下文以及不同作用域中的对象 ,取得对象属性的值,或执行简单的运算 阅读全文
posted @ 2020-05-15 16:06 F_sinclair 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 用于请求参数传递,一般是action到jsp页面。以键值对的形式保存起来, 前面是键“userlist”,后面是对应的值list。方便后面jsp页面取值 UsersServlet.java request.setAttribute("userlist", list); JSP <c:forEach 阅读全文
posted @ 2020-05-15 15:33 F_sinclair 阅读(900) 评论(0) 推荐(0) 编辑
摘要: 在Linux命令行下输入 getconf LONG_BIT 命令 阅读全文
posted @ 2019-08-23 14:18 F_sinclair 阅读(254) 评论(0) 推荐(0) 编辑
摘要: shell script for循环 阅读全文
posted @ 2019-07-23 09:44 F_sinclair 阅读(922) 评论(0) 推荐(0) 编辑
摘要: linux shell 阅读全文
posted @ 2019-07-19 10:53 F_sinclair 阅读(1976) 评论(0) 推荐(0) 编辑
摘要: linux 脚本学习 阅读全文
posted @ 2019-07-17 14:13 F_sinclair 阅读(8466) 评论(0) 推荐(0) 编辑
摘要: /bin This directory contains executable programs which are needed in single user mode and to bring the sys‐ tem up or repair it. 此目录包含单用户模式下所需的可执行程序,并 阅读全文
posted @ 2019-07-17 10:44 F_sinclair 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 语法结构如下: alter table table_name drop index column_name; 阅读全文
posted @ 2019-03-05 11:41 F_sinclair 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 数据库的主键指的是一个列或多个列组合,其值能唯一标注表中的每一行,通过他可以强制表的实体完整性。主键可以用来表示一个精确定位的特定行,如果没有主键,无法精准定位一条记录是否就是你要的相关行记录,这样就会导致更新或者删除表中特定的行很困难。如果有主键来约束行记录的唯一性后,就可以用主键来解决问题。 主 阅读全文
posted @ 2019-03-03 17:11 F_sinclair 阅读(5045) 评论(0) 推荐(1) 编辑