帮帮我,各位老师们,我使用的是JSTL1.2 tomcat6.0.13,在(tomcat5.5.20,JSTL1.1就没问题
)

解决方案 »

  1.   

    Property 'name' not found on type java.lang.String
     你的name是什么类型的  看看是不是类型匹配的问题
      

  2.   

    JAVABEANpublic class Product implements Serializable {

    private Integer id;

    private String name;

    private String description;

    private double price; public String getDescription() {
    return description;
    }
    ....................................hibernate的映射文件
    <class name="com.shop.www.entity.Product" table="PRODUCT">
    <id name="id" column="id" type="integer">
    <generator class="increment"></generator>
    </id>
    <property name="name" column="NAME" type="string" length="32" not-null="true"></property>
    <property name="description" column="DESCRIPTION" length="64" type="string"></property>
    <property name="price" column="PRICE" type="double" not-null="true"></property>
    </class>
      

  3.   

    兄弟~解决了没啊
     解决了告诉我啊~ 
    [email protected]
    谢谢啊~~~~