Ich habe folgendes Problem.
In meiner JSP datei kann ich nur auf ein attribut der datenbanktabelle zugreifen.verwende ich allerdings
[xml]
** <c:forEach items="${roomList}" var=“room”>
</c:forEach>**
[/xml]
erhalte ich folgende fehlermeldung im browser:
HTTP ERROR 500
Problem accessing /listRoom. Reason:
The class ‘de.room.Room’ does not have the property ‘temp_ist’.
kann mir einer weiterhelfen.ich arbeite mit annotation-driven im meiner spring-servlet.xml
hier meine konfigs:
[XML]
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property><!--
<property name="configurationClass">
<value>org.hibernate.cfg.AnnotationConfiguration</value>
</property> -->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>[/XML]
wie gesagt, wenn ich nur auf die erste spalte zugreife gibs da kein problem…