zoukankan      html  css  js  c++  java
  • Nhibernate使用中遇到的问题

    错误信息:

    Hibernate.ByteCode.Castle.dll —> System.IO.FileLoadException: Could not load file or assembly ‘NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4′ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference.

    这是Nhibernate3.2以后,nh提供了自己的proxy, 自己的bytecode,不需要引用 Hibernate.ByteCode.Castle.dll, 跟 Castle.Core.dll 了。

    新的 proxyfactory.factory_class 的设置方法:

    <property name=”proxyfactory.factory_class”>NHibernate.Bytecode.DefaultProxyFactoryFactory, NHibernate</property>

    按教程配出来了hbm.xml, 写出Entity类,配好数据库的连接,Run一下,一直报

    Unable to locate persister for the entity named

    后来终于发现是hibernate.cfg.xml中未加上这一行

    <mapping assembly="nhibernateSample" />

    郁闷啊,这个是从nhibernate的目录中拷过来的啊,教程中也完全没有提到这回事。。。。

  • 相关阅读:
    springboot(6)-热部署
    springboot(5)-文件上传
    ubuntu修改tomcat使用的jdk
    jstack使用
    HeapAnalyzer如何使用
    查看linux下tomcat使用的jdk版本
    ubuntu-tomcat安装目录
    vi命令
    211java-jdk安装记录
    linux的java安装目录
  • 原文地址:https://www.cnblogs.com/Daywei/p/2848124.html
Copyright © 2011-2022 走看看