摘要:
注意:这里spring整合struts2,使用的数据库操作类是JdbcTemplate模板,该模板使用c3p0连接池。Spring将JdbcTemplate注册成一个Bean,提供给dao使用【依赖注入】。 spring将扫描包中的所有类,将带有spring的注解【@Controller,@Repo 阅读全文
摘要:
1.struts的动作方法可以为void,没有结果视图,在动作方法中将json数据输出到页面中。 public void ajaxUsers(){ response.getWriter().print(); } 2.使用注解的jar包: struts-convention-plugin.jar as 阅读全文
摘要:
1.在不修改action源码的基础上,对action进行增强,AOP的思想。 2.自定义拦截器 单例 (1)方式一:实现Interceptor接口 (2)方式二:继承AbstractInterceptor抽象类【常用】 定义拦截器类 在struts.xml中声明拦截器 使用拦截器 如果在拦截器中没有 阅读全文