-
步 骤查看全部
-
后台自动回复功能查看全部
-
jsp+servlet+jdbc查看全部
-
基本功能:1 接受客户的指令 2 根据客户的指令,来返回相应的信息 模块划分: 1 回复内容的维护 2 对话功能 3 回复内容的列表 4 回复内容删除查看全部
-
要先学JSP和servlet呀!查看全部
-
mybatis的拼接,在mapper中传的参数只能是一个,要想多穿参数就得传一个对象过去。查看全部
-
mybatis标签查看全部
-
关于老师说的带查询条件进行删除: javascript: function deleteOne(id) { document.getElementById(id).value = id; document.getElementById("mainForm").action="<%=request.getContextPath() %>/DeleteOneServlet"; document.getElementById("mainForm").submit(); } html: <a href="#" onclick="deleteOne(${message.messId })">删除</a> <input type="hidden" id="${message.messId }" name="messId" value="${message.messId }" /> servlet: String messId = request.getParameter("messId"); String messCommand = request.getParameter("messCommand"); String messDescription = request.getParameter("messDescription"); request.setAttribute("messCommand", messCommand); request.setAttribute("messDescription", messDescription); MessageService messageService = new MessageService(); messageService.deleteMessage(messId);查看全部
-
OGNL查看全部
-
mybatis中的OGNL表达式查看全部
-
Mybatis中OBNL表达式。查看全部
-
OGNl表达式查看全部
-
Mybatis中的OGNL表达式查看全部
-
where 1=1 是动态拼接sql语句用的,避免sql语句出错,进行条件查询的时候必须要使用where关键字,假如没有1=1,用户没输入任何值的时候,此时的sql语句是 sql是select * from command where;这样的话,sql语句就有问题;只有加上1=1才是一条完整的sql语句,因为1=1是永远成立的,所以select * from command where 1=1 就相当于 select * from command。。。。。。否者会出错(You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and COMMAND ='查看'' at line 1)查看全部
-
xml 或者是 HTML中 有转义的方法 xml中 &是不能直接使用的 必须要转义,1、按照HTML的转法 & -> & " -> " 2、还可以用mybatis中的ognl的表达式中自己的操作符 && -> and查看全部
举报
0/150
提交
取消