- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我是 spring 框架的新手。我正在尝试使用 spring @Async 的教程注释。我从类路径资源 [spring.xml] 收到此错误 XML 文档中的第 9 行无效;嵌套异常是 org.xml.sax.SAXParseException;行号:9;列数:109;必须为元素类型“beans”声明属性“xmlns”。
我想知道为什么会出现这个错误,如何解决?
下面是我的spring.xml文件
**
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">
<context:component-scan base-package="cs"/>
<bean id="regularService" class="cs.RegularService">
</bean>
<task:annotation-driven/>
</beans>
**
常规服务.java
package cs;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import cs.MailUtility;
@Service
public class RegularService {
@Autowired
private MailUtility mailUtility ;
public void registerUser(String userName){
System.out.println(" User registration for "+userName +" complete");
mailUtility.sendMail(userName);
System.out.println(" Registration Complete. Mail will be send after 5 seconds ");
}
}
邮件实用程序.java
package cs;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
@Component
public class MailUtility {
@Async
public void sendMail(String name){
System.out.println(" I Will be formatting html mail and sending it ");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(" Asynchronous method call of send email — Complete ");
}
}
测试服务.java
package cs;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import cs.RegularService;
public class TestService {
public static void main(String args[]){
ClassPathXmlApplicationContext appContext = new ClassPathXmlApplicationContext(new String[] {"spring.xml"});
RegularService regService = (RegularService) appContext.getBean("regularService");
regService.registerUser("Skill-Guru");
}
}
最佳答案
删除这一行:
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
那么你的文件是有效的。
关于java - 必须为元素类型 "xmlns"声明属性 "beans",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15291602/
什么是xmlns:android、xmlns:app、xmlns:tools,它们之间的基本区别是什么?什么时候应该使用它? 最佳答案 对于 android 和 app 命名空间,使用 this li
有人要求我从 http 端点提供以下 XML 文档,完全像:- ... 但是 Web API 吐出 ... 我用谷歌搜索并尝试了各种修复但无济于事
有没有办法声明这样的命名空间: xmlns:views="clr-namespace:xxx.xxx.Views" xmlns:someNestedViews="views.SomeNestedVie
这个工作正常。 curl -H 'Content-Type: application/xml' -d " " https://dashboard.onsip.com/http-bind 这个返回一
对于以下 XML 片段: xmlns、xmlns:xsi 和 xsi:schemaLocation 属性的确切含义是什么?它们有什么关系? : 的作用是什么? xsi:schemaLocation=
最佳答案 它提示属性 tools:context=".MainActivity"那是 的一部分标签。它不知道 tools: 是什么前缀表示。 您需要添加 xmlns:too
我在 C# Windows 窗体应用程序中使用 .Net XmlSerializer 将对象序列化为 XML 文档。 根元素应该看起来像这样: 在分部类中(加入由 xsd.exe 创建的分
太气人了,简直说不出话来。我已经使用 SimpleXML 组装了一个 RSS 提要,但它正在使用现在的 namespace 。但是,输出时,它不断尝试在根节点中声明 xmlns:xmlns=""。尽管
假设我的 Web 服务发出带有“xmlns”、“xmlns:xsi”和“xsi:schemaLocation”的 XML 设置为占位符,这些占位符不是有效的 URI(例如“blahblahblah”)
我在这里有一个关于 XML 的基本问题。声明元素的 xmlns 时属性,使用 http://www.w3.org/2001/XMLSchema 是否合法? ?并在声明 xmlns:xsi 时属性,使用
我需要从 XSD 生成的 Java 类生成 XML 文件。 这些 Java 类中的某些字段作为 Object 而不是任何具体类型,因此在生成的 XML 文件中保证有 xsi:type 属性,这很好。
这个问题已经有答案了: NLS missing message: CANNOT_FIND_FACELET_TAGLIB (3 个回答) 已关闭 8 年前。 我正在尝试在 jsf 中创建自定义标签,这是
我尝试通过 LINQ to XML 创建 GPX XML 文档。 除了向文档添加 xmlns、xmlns:xsi 属性外,一切都很好。通过尝试不同的方式,我得到了不同的异常。 我的代码: XDocum
有没有人遇到这个“xmlns”命名空间问题(见下文)?我无法再构建我的工作项目。 起初我以为这是我的 git 分支,所以我切换到 origin develop 和 master 分支 - 问题仍然存在
在使用 JAXB 时,我想在使用泛型时从我的 XML 元素中删除多余的命名空间/类型。我该怎么做或者我做错了什么?我想使用泛型,这样我只需编写一次代码块。 示例代码: public static vo
我喜欢将页面作为 HTML 4.01 提供,因为 XHTML 在某些浏览器中并没有真正被视为 XHTML,但是 Facebook's OpenGraph meta tags要求: 但是由于页面的 D
我需要复制一个 xml header : 用我的代码: 'Export the object to XML Dim writer As New XmlSerializ
将 WCF Restful 服务与 XmlSerializer 结合使用,我得到以下响应。 0010327457 false
我的要求是转换以下 xml 文件: 10122 LE NAME A0000000A 到新的 xml 文件 :( 所需的输出: )
众所周知,ConstraintLayout是目前android开发中最流行、最高效的布局。但是要使用它的属性,您必须先导入“xmlns:app”。当您需要使用 ConstraintLayout 创建许
我是一名优秀的程序员,十分优秀!