- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建我的第一个 Spring 应用程序。它显示以下错误:
log4j:WARN No appenders could be found for logger (org.springframework.beans.factory.xml.XmlBeanDefinitionReader).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext] cannot be opened because it does not exist
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:341)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:302)
at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:73)
at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:61)
at com.spring1.FirstSpring1.main(FirstSpring1.java:20)
Caused by: java.io.FileNotFoundException: class path resource [applicationContext] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:141)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:328)
... 4 more
GetterSetter.java
package com.spring1;
private String name;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name=name;
}
public void displayInfo()
{
System.out.println("hello "+name);
}
FirstSpring1.java
package com.spring1;
public static void main(String[] args)
{
GetterSetter gt=new GetterSetter();
gt.setName("Google");
gt.displayInfo();
Resource resource = new ClassPathResource("applicationContext");
BeanFactory factory = new XmlBeanFactory(resource);
GetterSetter gt1 = (GetterSetter)factory.getBean("name1");
gt1.displayInfo();
}
XML 文件位于 src
文件夹中。
最佳答案
代替:
Resource resource = new ClassPathResource("applicationContext");
使用:
Resource resource = new ClassPathResource("applicationContext.xml");
关于java - BeanDefinitionStoreException : IOException parsing XML document from class path resource [applicationContext],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54967095/
我是 Spring 框架的新手,我正在关注这个 https://www.tutorialspoint.com/spring/spring_mvc_form_handling_example.htm教程
谁能告诉我如何解决这个问题? 我已将问题范围缩小到 pom.xml 文件。我的项目有效,但是当我添加以下依赖项时出现错误 org.springframework.data
我创建了一个扩展抽象类 AbstractScheduledService 的类. @Service public class MyClass extends AbstractScheduledServ
我正在努力完成 Spring MVC 教程: http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html 我的问题与这
当我尝试运行使用BeanDefinitionStoreException和Spring构建的Web应用程序时,遇到了gradle。 org.springframework.beans.factory.
我知道类似的问题问了很多次,但我不明白出了什么问题。帮我解决这个问题。我尝试使用 SpringMVC 运行我的应用程序,但我得到: 11-Aug-2017 13:06:29.471 SEVERE [R
我在启动 Spring MVC 应用程序时遇到另一个错误。这一切都是在我将其转换为 Maven 应用程序时开始的,但我不认为 Maven 与该问题有任何关系。我在 Tomcat 8.0.30 中看到了
更新 我使用了描述的方法here从“classpath:”和“classpath*:”打印出生成的 java 类路径并得到以下结果,但我仍然从 PPC 中获取 jms.properties 文件中定义
我正在尝试通过运行使用 maven 创建的 jar 来执行我的 springboot 应用程序,并遇到异常,经过多次尝试后仍未解决。任何帮助或指针将不胜感激。 提前致谢。 请在下面找到异常跟踪。 2
自从尝试从 xml config 切换到 javaconfig 后,我遇到了一些配置问题。 这是有问题的配置类: @Configuration @EnableTransactionManagement
我有一个基于 J2EE 的 Web 应用程序,它完美地部署在 JBoss 6.0 应用服务器上。 我正在使用 JBoss 的“默认”服务器配置。 我的“.ear”文件包含 EJB 和“.war”文件
我需要在 heroku 上上传现有的 tomcat 应用程序 - 我在部署时遇到错误已经尝试过官方 heroku 教程异常: 2018-06-04T09:54:41.843218+00:00
我有一个grails 2.2.4应用程序,可以正常运行。但是,当我尝试将spring-security-ui插件集成到应用程序中时,它没有启动。我将以下内容添加到了BuilConfig.groovy
我在 spring 做一个示例项目时出现了一些错误..错误是这样的...Test.java, applicationContext.java,Student.java 这些文件在 src 文件夹中..
这个问题已经有答案了: Spring: nested exception is java.lang.NoClassDefFoundError: org/aopalliance/aop/Advice (
我有一个运行良好的应用程序(当我在 Eclipse IDE 中启动它时),但是当我尝试通过这种方式像独立 jar 一样启动它时: java -jar -Duser.language=en -Duser
我正在尝试创建我的第一个 Spring 应用程序。它显示以下错误: log4j:WARN No appenders could be found for logger (org.springframe
我正在创建一个 spring mvc 项目,从启动并收到此错误: org.springframework.beans.factory.BeanDefinitionStoreException: Fai
我尝试了新版本的spring framework 4.0.3,发现在使用context:component-scan标签的过程中有一个奇怪的行为。 我已经尝试切断 context:component-
我是 spring mvc 3 和 hibernate 3 的新手。我需要对以下问题进行一些说明。我被这个问题锁定了,所以我无法继续下一步。 这是我的dispatch-servlet.xml
我是一名优秀的程序员,十分优秀!