这与我上周提出的这个问题有关:Grails App using IntelliJ Ultimate: Unable to resolve class when building solution
我正在尝试导入使用Java JDK 1.7 和 Grails 2.2.4 的Grails应用。我目前正在使用IntelliJ Ultimate IDE。我已将项目配置为使用这些库。
现在,当我尝试构建此项目时,我遇到了一些错误:
Caused by org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transacationManager'
我还为transactionManager
,sessionFactory
和lobHandlerDetector
提供了3个与上述错误类似的错误。
我还使用我的数据库凭据修改了文件DataSource.groovy
,我也收到了数据库连接错误:
Error while extracting DatabaseMetaData, nested exception in org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
'引起:java.net.ConnectException:连接被拒绝:连接`
我真的很难过为什么我无法让这个应用程序在IntelliJ Ultimate上运行,即使项目配置为使用我上面提到的库。
非常感谢任何帮助!