`
lx休止符
  • 浏览: 14161 次
  • 来自: dsadsa
最近访客 更多访客>>
社区版块
存档分类
最新评论

The reference to entity “test” must end with the ';' delimiter 异常处理【转】

 
阅读更多

本文转自http://liuzhaodong89.iteye.com/blog/1559998; 

今天修改了配置文件中的一个配置项值,将原先的url连接中加入了一个&source=upload,结果在应用启动的时候报错了。错误栈如下:

 

Java代码  收藏代码
  1. Caused by: org.xml.sax.SAXParseException: The reference to entity "test" must end with the ';' delimiter.  
  2.         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)  
  3.         at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)  
  4.         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)  
  5.         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)  
  6.         at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)  
  7.         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEntityReference(Unknown Source)  
  8.         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)  
  9.         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)  
  10.         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)  
  11.         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)  
  12.         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)  
  13.         at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)  
  14.         at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)  
  15.         at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:76)  
  16.         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:361)  
  17.         ... 176 more  

上网google,发现是sax解析造成的问题。解决方案很简单,就是把配置项值中用到"&"的地方改成"&"。原因是sax解析的类库在读取文件的时候是根据转义后的格式进行读取的,遇到"&"就认为是一个转义字符串,开始找结束符";",找不到自然就报错了。

分享到:
评论

相关推荐

    flex 中 && 符号的写法

    如果你遇到这样的问题: The entity name must immediately follow the '&' in the entity reference 说明你的& 符号写的有问题

    Linq to sql 和 Linq to Entity 高级查询

    实现linq多个查询条件连接功能(支持linq to sql 和linq to entity)。 按多个指定属性排序功能。 不同参数的lamdba表达式条件间的转换功能。

    Json转为类对象-JsonToEntity

    C#:此小程序实现将复杂的 json 格式数据转换为对应的实体类对象,对象与对象之间的关系采用了 ImplementFactory 组件提供的 Constraint 属性,可以在 Visual Studio 里使用 Nuget 搜索并引用该组件,该组件可实现...

    Entity.Framework.Tutorial.2nd.Edition.1783550015

    A comprehensive guide to the Entity Framework with insight into its latest features and optimizations for responsive data access in your projects About This Book Create Entity data models from your ...

    JsonToEntity JSON实体类生成工具 V1.0

    JSONToEntity是一款基于.NET 4.0框架的实用工具,主要功能是将JSON字符串自动转换为对应的C#实体类,极大地简化了开发者的工作流程。在处理JSON数据时,通常需要手动创建与之匹配的C#类,这个工具则能够自动生成这些...

    Chinese Entity Linking Comprehensive

    referred to in each query has a matching entity node in the reference Knowledge Base (KB) (LDC2014T16). If there is a matching node for a query, annotators create a link between the two. If there is ...

    Linq to Entity

    【Linq to Entity】是一种在.NET Framework中用于与关系数据库交互的技术,它是Language Integrated Query (LINQ)的一部分,专门用于实体框架(Entity Framework)。通过Linq to Entity,开发者可以使用C#或VB.NET等...

    Wrox.Professional.ADO.NET.3.5.with.LINQ.and.the.Entity.Framework.Feb.2009.rar

    《Wrox Professional ADO.NET 3.5 with LINQ and the Entity Framework》是针对.NET Framework 3.5中数据访问技术的重要参考资料。该书详细介绍了ADO.NET 3.5、LINQ(Language Integrated Query)以及Entity ...

    MVC+Linq to Entity音乐商店源码20130403

    这是一个基于ASP.NET MVC框架和Linq to Entity的数据访问技术实现的音乐商店源代码项目,发布于2013年4月3日。这个项目旨在提供一个基础的音乐商品管理平台,用户可以进行音乐商品的分类浏览和管理。下面将详细阐述...

    ASP.NET MVC with Entity Framework and CSS

    People wanting to learn ASP.NET MVC and Entity Framework ranging from novice developers new to the subject through to more experienced ASP.NET web forms developers looking to migrate from web forms to...

    CVS to Entity Framework

    【CVS to Entity Framework】是将CSV(逗号分隔值)文件的数据转换为C#实体类,并利用Entity Framework进行数据库操作的过程。这个过程通常包括以下几个关键步骤: 1. **CSV解析**:首先,我们需要解析CSV文件,这...

    Wrox.Professional.ADO.NET.3.5.with.LINQ.and.the.Entity.Framework.Feb.2009

    《Wrox Professional ADO.NET 3.5 with LINQ and the Entity Framework》是针对.NET Framework 3.5中数据访问技术的重要参考资料。本书深入探讨了ADO.NET 3.5、LINQ(Language Integrated Query,语言集成查询)以及...

    SSD7 选择题。Multiple-Choice

    (b) the name of the table, the names of the table's attributes, the data types of the table's attributes, the formats of the table's attributes, and the maximum number of rows that the table can have...

    Pro Entity Framework Core 2 for ASP.NET Core MVC

    Model, map, and access data effectively with Entity Framework Core 2, the latest evolution of Microsoft’s object-relational mapping framework that allows developers to access data using .NET objects,...

    Java_for_the_Web_with_Servlets

    "Java for the Web with Servlets, JSP, and EJB: A Developer’s Guide to J2EE Solutions" by Budi Kurniawan is a comprehensive guide aimed at helping developers master web programming in Java. The book ...

    Entity Framework Core Cookbook - Second Edition 2016

    The book will then explain how to work with transactions and stored procedures along with improving Entity Framework using query libraries. Moving on, you will learn to improve complex query ...

    WCF.Multi-Layer.Services.Development.with.Entity.Framework.4th.Edition

    Starting with the basics, you will then dive into the advanced concepts and features of LINQ to Entities, including Entity Framework, deferred execution, querying a view, and mapping a procedure....

    Code-First Development with Entity Framework

    This book will help you acquire the necessary skills to program your applications using Entity Framework. You will start with database configuration and learn how to write classes that define the ...

    An Efficient Zero-shot-capable Approach to End-to-End Entity

    总结来说,"An Efficient Zero-shot-capable Approach to End-to-End Entity Linking"这一研究可能提出了一种创新的方法,它结合了零样本学习和端到端实体链接的优势,旨在提高在未知实体类别下的识别和链接效果。...

Global site tag (gtag.js) - Google Analytics