这条信息是什么意思?我搜索了一下,但什么也没找到。什么可能导致这一切?
<?xml version="1.0" encoding="UTF-8"?>
<!-- Marker file indicating CDI should be enabled -->
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd">
<!-- Uncomment this alternative to see EJB declarative transactions in
use -->
<!-- <alternatives> -->
<!-- <class>org.jboss.as.quickstarts.greeter.domain.EJBUserDao</class> -->
<!-- </alternatives> -->
</beans>
消息明确表示bean-discovery-mode
属性应该在元素beans
中,这可能是容器的要求。尝试将属性赋予bean元素,如下所示:
bean-discovery-mode = "annotated"
原因是您使用的是CDI1.1,因此bean-discovery-mode
是一个强制属性。您可以通过从以下URL读取可用的XSD文件来确认它:
http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd
。
<xs:attribute name="bean-discovery-mode" use="required">
<xs:annotation>
<xs:documentation>
It is strongly recommended you use "annotated".
If the bean discovery mode is "all", then all types in this
archive will be considered. If the bean discovery mode is
"annotated", then only those types with bean defining annotations will be
considered. If the bean discovery mode is "none", then no
types will be considered.
</xs:documentation>
</xs:annotation>
朋友们,当在apache camel中使用组件集头时,在EAP中进行部署时,它会给我带来以下错误 /META-INF/jboss-camel-context.xml]无效;嵌套异常为org.xml.sax.saxParseException;LineNumber:48;ColumnNumber:79;CVC-complex-type.3.2.2:属性“header name”不允许出现在元素“se
这个错误出现在web.xml文件的错误页标记上: cvc-complex-type.2.2:元素“location”不能有元素[childrens], 我的web.xml文件如下所示(未显示其他标记): xmlns:xsi=“http://www.w3.org/2001/xmlSchema-instance” xsi:schemalocation=“http://java.sun.com/xml/
我正在尝试根据XML模式验证XML文档。 这是我的架构: 这是我的XML文档: 现在,当我验证文档(通过Eclipse)时,我得到以下消息: 无效。错误-第18,21行:org.xml.sax.SAXParseException;行号:18;列号:21;CVC-complex-type2.4.a:发现以元素“puiss”开头的内容无效。应为“{Puissance}”之一. 错误-第69,9行:or
我正在学习如何使用Spring安全登录。我提供了我的web.xml、Dispatcher-servlet.xml、login.jsp、spring-security.xml文件。我觉得spring-security.xml.有些错误 您可以使用spring security为我提供一个完整的工作登录程序。 错误如下: 我的DispatcherServlet如下: 我的spring-security
在eclipse中编辑applicationContext.xml时,下面的内容 引发错误: 我在谷歌上搜索了错误,有些地方说订单很重要…我尝试在bean中重新排列项,但错误仍然存在。 怎么啦?
我刚开始使用spring,我现在正在使用Spring4 一旦将war部署到JCS-SaaS(云)中,我将得到以下错误: org.springframework.beans.factory.XML.xmlBeanDefinitionStoreException:类路径资源[pepsiservlet-context.XML]的XML文档中的第33行无效;嵌套异常是org.xml.sax.SAXPars