当前位置: 首页 > 知识库问答 >
问题:

如何解决-创建名为defaultController的bean时出错

施锋
2023-03-14

我是Spring MVC和HiberNate的新手。几天来,我一直试图制作一个简单的Spring项目,但在那里遇到了一些错误。错误说org.springframework.beans.factory.不满意的依赖异常:创建名称为“客户DAOImp”的bean时出错

这是我的错误

HTTP状态500-内部服务器错误

类型异常报告

Message内部服务器错误

描述服务器遇到内部错误,无法完成此请求

例外

javax。servlet。ServletException:Servlet。servlet dispatcher的init()引发异常的根本原因

组织。springframework。豆。工厂UnsatisfiedPendencyException:创建名为“CustomerDAOImp”的bean时出错:通过字段“sessionFactory”表示未满足的依赖关系;嵌套的异常是org。springframework。豆。工厂NoSuchBean定义异常:没有“org”类型的合格bean。冬眠SessionFactory'可用:至少需要1个符合autowire候选资格的bean。依赖项注释:{@org.springframework.beans.factory.annotation.Autowired(required=true)}根本原因

组织。springframework。豆。工厂NoSuchBean定义异常:没有“org”类型的合格bean。冬眠SessionFactory'可用:至少需要1个符合autowire候选资格的bean。依赖项注释:{@org.springframework.beans.factory.annotation.Autowired(required=true)}注意,GlassFish Server开源版本4.1.1日志中提供了异常及其根本原因的完整堆栈跟踪。

GlassFish服务器开源版4.1.1

我已经使用maven多模块来完成这个项目。这里的“客户DAOImp”是我在客户DAOImp类中定义的存储库的名称。这是java类,它扩展了GenericImp类,实现了客户DAO接口,并进一步客户DAO扩展了GenericDAO接口。

顾客道姆

@Repository(value = "CustomerDAOImp")
public class CustomerDAOImp extends GenericDAOImp<Customer> implements CustomerDAO{

}

客户DAO

public interface CustomerDAO extends GenericDAO<Customer>{

}

通用刀

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>

应用Context.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>

这是我的项目结构

希望得到积极的回应,谢谢............

共有1个答案

曹自怡
2023-03-14

您是如何创建ApplicationContext的?您是否在程序中以编程方式创建了它,或者希望Spring声明能够处理它?

从您提供的情况来看,故障似乎发生在dispatcher初始化和相应的DAO依赖项注入期间。DAO依赖项已在applicationContext中定义。xml与调度器servlet不同。xml。所以看起来像是applicationContext。dispatcher servlet时未加载xml。xml正在加载。

查看你的代码。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上下文层次结构和https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#context-导言

您还可以检查上下文是否正确加载到日志中。他们将提供bean初始化的详细信息。在应用程序初始化和servlet加载阶段共享日志消息。

日志记录的一些参考:https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-logging.html

 类似资料:
  • 我有一个实体类InAppNotification。看起来像这样的java: 我使用JPA来处理数据库查询,这就是JPA接口的定义: 这是我application.properties的样子: 但是,当我试图在构建后通过运行 来打包应用程序时,我会遇到以下问题: 尝试调用不存在的方法。尝试从以下位置进行:javax.el.ELManager.getExpress sionWorks(ELManage

  • 在将project从Spring Boot版本从1.2.3.release迁移到1.3.0.release之后,我已经开始得到以下异常。 创建类路径资源[org/springframework/boot/autoconfigure/admin/springapplicationadminjmxautoconfiguration.class]中定义的名为'Spring ApplicationAdmi

  • 我遵循本教程将消息发送到azure服务队列:https://docs.microsoft.com/en-us/azure/java/spring-framework/configure-spring-boot-starter-java-app-with-azure-service-bus 到我现有的spring boot应用程序,但我得到以下错误: 用户类别: 控制器类: pom xml: 添加它

  • 我试图将弹性搜索集成到spring-boot应用程序中,但我得到了这个*创建名为“client”的bean时出错*异常,不确定是什么地方出了问题,因为我之前找不到任何类似的线索...非常感谢你为大家指路。这是mu elasticsearch配置: 这是我的主要应用程序: 我的pom.xml: 这是te异常跟踪:

  • 我有这些错误编译,我不知道我哪里错了,我只有这3个类

  • 我正在尝试在spring boot应用程序中使用SQLite。但是应用程序不能创建下面的bean。 org.springframework.boot.autocigure.orm.jpa.hibernatejaconfiguration 我该怎么办?我在这个站点上搜索了相关的问题,但是找不到一个合适的。 如下所示。 4.0.0 org.springframework.Boot spring-boo