我是 Spring MVC 和 Hibernate 的新手。几天我试图做一个简单的春季项目,但在那里遇到了一些错误。错误说明 org.springframework.beans.factory.UnsatisfiedDependencyException:创建名为'CustomerDAOImp'的
的bean时出错这是我的错误
HTTP状态500 - 内部服务器错误
输入例外报告
messageInternal Server Error
description服务器遇到阻止它的内部错误 完成此请求。
例外
javax.servlet.ServletException:servlet调度程序的Servlet.init() 引发异常根本原因
org.springframework.beans.factory.UnsatisfiedDependencyException: 创建名为“CustomerDAOImp”的bean时出错:不满意的依赖项 通过字段'sessionFactory'表示;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException:没有 'org.hibernate.SessionFactory'类型的限定bean可用: 预计至少有1个豆有资格成为autowire候选人。 依赖注释: {@ org.springframework.beans.factory.annotation.Autowired(所需=真)} 根本原因
org.springframework.beans.factory.NoSuchBeanDefinitionException:没有 'org.hibernate.SessionFactory'类型的限定bean可用: 预计至少有1个豆有资格成为autowire候选人。 依赖注释: {@ org.springframework.beans.factory.annotation.Autowired(所需=真)} note备注异常的完整堆栈跟踪及其根本原因 可在GlassFish Server Open Source Edition 4.1.1日志中找到。
GlassFish Server Open Source Edition 4.1.1
我使用maven multi模块完成了这个项目。这里'CustomerDAOImp'是我在CustomerDAOImp类中定义的存储库的名称。这是扩展GenericImp类并实现CustomerDAO接口的java类,并且进一步的CustomerDAO扩展了GenericDAO接口。
CustomerDAOImp
@Repository(value = "CustomerDAOImp")
public class CustomerDAOImp extends GenericDAOImp<Customer> implements CustomerDAO{
}
CustomerDAO
public interface CustomerDAO extends GenericDAO<Customer>{
}
GenericDAO
public interface GenericDAO<T> {
void insert(T t);
void update(T t);
boolean delete(int id);
List<T> getAll();
T getById(int id);
}
我的控制器用于映射jsp页面
@Controller
public class DefaultController {
@Autowired
CustomerDAOImp customerDaoImp;
@RequestMapping(value = "/", method = RequestMethod.GET)
public String index() {
return "user/dairy/index";
}
@RequestMapping(value = "/customer", method = RequestMethod.GET)
public String customer(Model model) {
model.addAttribute("customer", customerDaoImp.getAll());
return "user/dairy/customer";
}
}
调度-servlet.xml中
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
">
<context:component-scan base-package="com.nishan.dairy"/>
<mvc:annotation-driven/>
<mvc:resources mapping="/static/**" location="/WEB-INF/assets/"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/views/" p:suffix=".jsp"/>
</beans>
的applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:security="http://www.springframework.org/schema/security"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd
">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
p:location="/WEB-INF/db/jdbc.properties"/>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="${jdbc.driverClassName}" p:url="${jdbc.url}"
p:username="${jdbc.username}" p:password="${jdbc.password}"/>
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="packagesToScan" value="com.nishan.dairyreport.entity"/>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
</beans>
这是我的项目结构
希望得到积极回应,谢谢...........
答案 0 :(得分:2)
你是如何创建ApplicationContext的? 您是否已在程序中以编程方式创建它,或者期望您的Spring声明能够处理它?</ p>
根据您提供的内容,看起来在调度程序初始化和相应的DAO依赖注入期间发生了故障。
DAO依赖关系已在applicationContext.xml
中定义,与dispatcher-servlet.xml
不同。
因此,applicationContext.xml
加载时似乎没有加载dispatcher-servlet.xml
。
检查web.xml
以确保您有一个ContextLoader,可以自动为Spring MVC应用程序实例化根和Web应用程序上下文。
这些行应该存在:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
您可以按上述方式初始化上下文或以编程方式执行;有关详细信息,请参阅以下内容 https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-servlet-context-hierarchy 和 https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#context-introduction
您还可以检查上下文是否在日志中正确加载。他们将提供有关bean初始化的详细信息。 在应用程序初始化和servlet加载阶段共享您的日志消息。
一些日志记录参考: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-logging.html