摘要:
阅读全文
该文被密码保护。 阅读全文
摘要:
如果@RequestMapping() 表示:请求地址默认为绝对地址 @RequestMapping(value={"", "/"}) 表示:请求的地址是 绝对地址 localhost:8080/bussys 或者 绝对地址+“/” localhost:8080/bussys/ 阅读全文
摘要:
mybatis 报错: Parameter id not found. Available parameters are [1, 0, param1, param2] 错误1:参数类型多种,parameterType不用写 错误2:传递多个参数时 改正2: 阅读全文
摘要:
1、首先定义一个sql标签,一定要定义唯一id<sql id="Base_Column_List" >name,age</sql>2、然后通过id引用<select id="selectAll">select <include refid="Base_Column_List" /> from stu 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="./js/jquery-1.10.2.min.js" type="text/javascript"></script> </head> < 阅读全文