zoukankan      html  css  js  c++  java
  • 运行WeCompanySite时遇到Error creating context 'spring.root': Error thrown by a dependency of object 'System.Data.SQLite' defined in 'assembly [Spring.Data,

    从网上下载的源码WeCompanySite,运行时报错

    Error creating context 'spring.root': Error thrown by a dependency of object 'System.Data.SQLite' defined in 'assembly [Spring.Data, Version=1.3.1.40711, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 1386' : Unsatisfied dependency expressed through constructor argument with index 2 of type [System.Type] : Could not convert constructor argument value [System.Data.SQLite.SQLiteConnection, System.Data.SQLite, Version=1.0.65.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139] to required type [System.Type] : Cannot convert property value of type [System.String] to required type [System.Type] for property ''.
    while resolving 'constructor argument with name dbmetadata' to 'Spring.Data.Common.DbMetadata#7A6D1C' defined in 'assembly [Spring.Data, Version=1.3.1.40711, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 1386'

    在网上找到了这篇文章

    http://blog.csdn.net/panderman/article/details/7295302

    然后发现web.config中配置为

    <!--SQLite-->
    <add key="provider" value="System.Data.SQLite"/>
    <add key="connectionString" value="Data Source=|DataDirectory|DataBase.db;Version=3;FailIfMissing=False;"/>
    <add key="dialect" value="NHibernate.Dialect.SQLiteDialect"/>
    <add key="driver_class" value="NHibernate.Driver.SQLite20Driver"/>

    才恍然大悟,本机没有安装SQLite。

    http://sqlite.phxsoftware.com/

    下载一个SQLite-1.0.65.0-setup.exe,安装后再运行就不报错了。

  • 相关阅读:
    CODEVS——T 2618 核电站问题
    Spring使用AspectJ注解和XML配置实现AOP
    oracle存储过程
    oracle什么时候需要commit
    短信发送接口被恶意访问
    JAVA内存模型
    构造函数,静态代码块,构造代码块
    mybatis缓存
    volatile和synchronized
    利用反射创建对象必须要显式的声明构造方法吗?
  • 原文地址:https://www.cnblogs.com/thomaswang/p/2828274.html
Copyright © 2011-2022 走看看