Maven搭建Spring+Struts2+Mybatis项目(二) web.xml设置


  NCEE System
  
  	welcome.jsp
  
  
  
  
  	struts2
  	org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
  	
  		config
  		struts-default.xml,struts-pulgin.xml,classpath:struts.xml
  	
  
  
  	struts2
  	/*
  
  
  
  
    Spring Context
    contextConfigLocation
    classpath:applicationContext.xml
  
  
    org.springframework.web.context.ContextLoaderListener
  


一, XML文件头解释

1.1 XML相关知识

XSD: XML Schema Definition

DTD: Document Type Definition

XSD与DTD用与校验文件格式,XSD比DTD更强大用于替代DTD。

语法格式:

xmlns:namespace-prefix:"namespaceURI"


xmlns: XML Namespace

xmlns:xsi: XMLSchema Instance

xsi:schemaLocation


1.2 Eclipse中常见异常: Can not change  version of project facet Dynamic Web Module to version 2.3

Eclipse->Windown->show view->navigator

左栏project explore旁边会出现一个navigator, 根目录下找到.settings\org.eclipse.wst.common.project.facet.core.xml



  
   
  
   


二, Struts2部分解释

三, Spring部分解释


你可能感兴趣的:(Spring,Java)