概述
闲来无事,学了一下新的spring mvc 3.2,感觉比之前版本好用,很灵活。
顺便与mybatis整合了,
写了个学生选课demo,
主要实现点:
1. mybatis-3.2.2与spring 3.2.0整合,整合时只需要在applicationContext.xml里配mybatis一些信息,
关键代码:
applicationContext.xml
<context:property-placeholder location="classpath:jdbc.properties"/> <bean id="dataSource" class="org.apache.ibatis.datasource.pooled.PooledDataSource" destroy-method="forceCloseAll"> <property name="driver" value="${jdbc.driver}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> </bean> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <tx:annotation-driven/> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="typeAliasesPackage" value="com.jayung.curriculum.domain"/> </bean> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.jayung.curriculum.mapper"/> </bean>
用spring管理mybatis事务,无需写DAO的实现类了,代码很简洁,service层直接调用mybatis的mapper类(相当于DAO接口),增删改操作,只须在service对应的方法上加上@Transactional
@Transactional
public void save(Student student) {
studentMapper.insert(student);
}
2. spring mvc
全面使用注解,非常简洁,在编码时,无需在xml与java代码来回切换,一个@Controller和@RequestMapping就代替了大量的xml配置,感觉很好。
写了两个拦截器,一个拦截学生是否登录,一个拦截管理员是否登录,使用spring拦截器代替Filter来检测是否登录,基于RequestMapping拦截比Filter更有效,还可以配置例外拦截白名单。
<mvc:interceptors> <mvc:interceptor> <mvc:mapping path="/student/**"/> <mvc:mapping path="/courses"/> <bean class="com.jayung.curriculum.web.interceptor.LoginInterceptor"/> </mvc:interceptor> <mvc:interceptor> <mvc:mapping path="/console/**"/> <bean class="com.jayung.curriculum.web.interceptor.ConsoleInterceptor"> <property name="excludeURIs"> <list> <value>/console</value> <value>/console/login</value> </list> </property> </bean> </mvc:interceptor> </mvc:interceptors>
3. restful的url
实现类似于iteye的url http://www.iteye.com/news/28054,
例如:http://localhost:8080/curriculum/student/1234,显示学号为1234的学生信息,http://localhost:8080/curriculum/student/1234/courses,显示学号为1234的所选的课,
http://localhost:8080/curriculum/console/student/1122/edit,编辑学号为1122学生的信息。
以前要实现这样的url,要借助于UrlRewriteFilter,现在用spring mvc可以原生实现这样的url,不过由于目前浏览器只支持post和get两种提交方式,rest全部实现还依赖rest相关包。
@RequestMapping("/student/{studentId}")
public String view(@PathVariable String studentId, Model model) {
model.addAttribute("student", studentService.view(studentId));
return "/student/view";
}
附件Demo包含以下内容,
spring,spring mvc,mybatis,spring登录拦截器,spring定时任务实际方式,ajax传输json格式数据等
附件已重新整理上传。供有需要的同学参考。
最后
以上就是俊秀铃铛为你收集整理的spring mvc + spring + mybatis+json整合的全部内容,希望文章能够帮你解决spring mvc + spring + mybatis+json整合所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复