bootscrap+angular+ssm整合(上)

实体类

bootscrap+angular+ssm整合(上)_第1张图片

bootscrap+angular+ssm整合(上)_第2张图片

引入插件

bootscrap+angular+ssm整合(上)_第3张图片

配置文件如下:


springmvc.xml


       xmlns:tx="http://www.springframework.org/schema/tx" 
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
                           http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
                           http://www.springframework.org/schema/tx 
                           http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
                           http://www.springframework.org/schema/context 
                           http://www.springframework.org/schema/context/spring-context-3.2.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
                           http://www.springframework.org/schema/mvc 
                           http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
                           
     
     
     
     
     
     
     
     

     
     
     
     
     
     

mybatis-config.xml



  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">


   
   
       
       



Springmvc.xml



       xmlns:tx="http://www.springframework.org/schema/tx" 
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
                           http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
                           http://www.springframework.org/schema/tx 
                           http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
                           http://www.springframework.org/schema/context 
                           http://www.springframework.org/schema/context/spring-context-3.2.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
                           http://www.springframework.org/schema/mvc 
                           http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
                           
     
     
     
     
     
     
     
     

     
     
     
     
     
     

Web.xml


                 xmlns="http://java.sun.com/xml/ns/javaee"   
                 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
                                                   http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
                                                   id="WebApp_ID" version="3.0">
 
 
  encoding
  org.springframework.web.filter.CharacterEncodingFilter
 
  encoding
  utf-8
 

 

 
  encoding
  /*
 

  
 
 
  mvc
  org.springframework.web.servlet.DispatcherServlet
 
  contextConfigLocation
  classpath:springmvc.xml
 

  1
 

 
  mvc
  /
 

  
  
 
  contextConfigLocation
  classpath:applicationContext.xml
 

 
 
  org.springframework.web.context.ContextLoaderListener
 



  

你可能感兴趣的:(AngularJS)