摘要: 在MyBatis的select、insert、update、delete这些元素中都提到了parameterType这个属性。MyBatis现在可以使用的parameterType有基本数据类型和JAVA复杂数据类型基本数据类型:包含int,String,Date等。基本数据类型作为传参,只能传入一个。通过#{参数名} 即可获取传入的值复杂数据类型:包含JAVA实体类、Map。通过#{属性名}或#{map的KeyName}即可获取传入的值基本数据类型参数示例:根据班级ID查询教师列表xml文件[html]view plaincopyjava代码[java]view plaincopyListt 阅读全文
posted @ 2014-03-31 16:19 踏刃而起 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 两种方法:1.在方法参数中加入@RequestHeader2.在类级别注入HttpServletRequest建议使用第二种方法,这样可避免每个方法都加入HttpHeaders参数 1 @Controller 2 @RequestMapping("/hello") 3 public class HelloController { 4 @Autowired 5 private HttpServletRequest request; 6 7 @RequestMapping(value="/printname/{name}", method=RequestMe 阅读全文
posted @ 2014-03-31 14:58 踏刃而起 阅读(20224) 评论(0) 推荐(0) 编辑