• 2022-06-06
    在web.xml中进行创建Spring Application Context配置错误()
    A: 必须配置contextConfigLocation应用初始化参数,以告知系统Spring Application Context配置文件的位置
    B: 如果不配置contextConfigLocation应用初始化参数,系统会根据默认的名称和地址“/WEB-INF/applicationContext.xml”加载Spring配置文件
    C: 必须配置org.springframework.web.context.ContextLoaderListener类监听器,以创建Spring Application Context
    D: org.springframework.web.context.ContextLoaderListener类由Spring提供
  • 举一反三