我開始使用Spring教程,並試圖這樣簡單的代碼,春天錯誤 - org.springframework.beans.factory.NoSuchBeanDefinitionException
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
ctx.register(HelloWorldConfig.class);
ctx.register(HelloWorldConfig1.class);
ctx.refresh();
HelloWorld helloWorld = ctx.getBean(HelloWorld.class);
helloWorld.setMessage("Hello World!");
helloWorld.getMessage();
HelloWorld1 helloWorld1 = ctx.getBean(HelloWorld1.class);
helloWorld1.setMessage("Hello World!");
helloWorld1.getMessage();
這是拋出異常下面,
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.tutorialspoint.HelloWorld] is defined
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:295)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1125)
at com.tutorialspoint.MainApp.main(MainApp.java:13)
雖然如果我嘗試註冊只有一個配置,並從那裏使用bean,它只是工作正常。所以如果單獨使用HelloWorld/HelloWorldConfig或HelloWorld/HelloWorldConfig1,則工作正常,只有當我一起註冊時,纔會出現此錯誤。
下面的其它類,
package com.tutorialspoint;
import org.springframework.context.annotation.*;
@Configuration
public class HelloWorldConfig {
@Bean
public HelloWorld helloWorld(){
return new HelloWorld();
}
}
和
package com.tutorialspoint;
import org.springframework.context.annotation.*;
@Configuration
public class HelloWorldConfig1 {
@Bean
public HelloWorld1 helloWorld(){
return new HelloWorld1();
}
}
和
package com.tutorialspoint;
public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message : " + message);
}
}
和
package com.tutorialspoint;
public class HelloWorld1 {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message 1: " + message);
}
}
讓我們看看你的配置類。 –
在OP中添加了其他類。 – user2112430