ssj 框架

ssj 框架

建一个 webapp maven项目

  1. 导入需要的包Spring4 + SpringMVC+ jpa/hibernate4
  2. 创建一个 jdbc.properties
  3. 在applicationContext.xml中加载 配置

配置连接池
注意
destroy-method="close当前bean销毁的时候,会先调用close方法,关闭连接

entityManagerFactory的注入

配置事务管理器 并且开启注解

扫描包 dao层和service层

  1. 测试 spring
  2. 配置web.xml(更改头)
    读取applicationContext.xml
    启动Spring 配置ContextLoaderListener之后Spring就会启动

    org.springframework.web.context.ContextLoaderListener
  

spring的核心控制器的确定
applicationContext-mvc.xml中

 
    
    
    
    
    
        
        
    

注意启动tomcat就启用


    dispatcherServlet
    
    /
  

解决编码问题

  1. Tomcat测试

你可能感兴趣的:(ssj 框架)