konfiguracja hibernate - błąd w beanie servletContext

0

Hej, Podczas startu jbossa wyrzuca mi wyjątek:

11:27:20,279 ERROR [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-14) Context initialization failed: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 51 in XML document from ServletContext resource [/WEB-INF/spring/appServlet/servlet-context.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 51; columnNumber: 72; cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'bean'.

Chodzi tutaj o ten bean:

	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="annotatedClasses">
			<list>
				<value>com.engineering.pawel.pojo.User</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</prop>
				<prop key="hibernate.current_session_context_class">thread</prop>
				<prop key="hibernate.hbm2ddl.auto">create-drop</prop>
				<prop key="hibernate.show_sql">false</prop>
			</props>
		</property>
	</bean>

nagłówek wygląda tak :

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:jee="http://www.springframework.org/schema/jee"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/tx
		http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
		http://www.springframework.org/schema/jee
		http://www.springframework.org/schema/jee/spring-jee-4.0.xsd">
0

Skoro tak masz nagłówek to nie <bean> tylko <beans:bean>.

0

Faktycznie, nie zauważyłem. Teraz wyrzuciło mi coś takiego:
The matching wildcard is strict, but no declaration can be found for element 'property'.

0

Serio? I spytasz o to samo przy każdym? To twoje property też jest częścią tej samej scheme więc siłą rzeczy skoro nadałeś tej scheme prefix "beans" to musisz go używać wszędzie dla typów które z niej pochodzą.

Może czas zacząć rozumieć co i dlaczego jest w kodzie, a nie tylko kopiować z tutoriala/dokumentacji? To znacznie ułatwia życie...

1 użytkowników online, w tym zalogowanych: 0, gości: 1