首页 > 代码库 > OA 整合spring hibernate

OA 整合spring hibernate

2个错误

1.

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named ‘TestService‘ is defined

这是因为

语句:TestService se = (TestService)ac.getBean("TestService"); 应该是:

         TestService se = (TestService)ac.getBean("testService"); 修改后通过;

 

2.CannotCreateTransactionException

后发现JdbcUrl写错,因为我的MySql的端口号是:3308,而默认是3306,所以我加了端口号后正确:

jdbcUrl  =jdbc:mysql://localhost:3308/jhxcomoa

OA 整合spring hibernate