我可以仅自动装配构造函数注入的多个参数之一吗?
我有一个 bean,我想向其中注入一组资源。 org.springframework.core.io.Resource[] 实际上,InputStreamSource 数组就足够了。我希望我的 bean 定义…
Spring 3.0中的@Autowired——创建静态bean?
我一定是错误地使用了@Autowired,但我不知道具体是如何使用的。这是一个 Spring 3.0 Portal MVC 应用程序。 服务本身不是基于 spring 的(它们是自动…
当 Sessionfactory.getCurrentSession.merge 调用时,ConstraintValidator 中的 @Autowired bean null
我刚刚使用 Hibernate 实现了 Bean 验证。 如果我显式调用验证器,它会按预期工作,并且连接到数据库的 @Autowired DAO bean 将按预期注入。 我之前发…
使用独特的 bean 进行 spring 自动装配:Spring 期望单个匹配的 bean,但发现了 2 个
我正在尝试使用 Spring 自动装配一些 bean(用于依赖注入)作为 web 应用程序。一个控制器 bean 包含另一个 bean,而另一个 bean 又保存另一组 bean …
Spring AutoWired 异常
这是错误... Deployment Error for module: EBlood: Error occurred during deployment: Exception while loading the app : java.lang.IllegalStateE…
如何在 Scala 对象中使用 Spring 自动连线(或手动连线)?
我正在尝试将 Spring 与 Scala 一起使用。我知道 Autowired 可与 Scala 类一起使用,但我使用的 Web 框架需要一个对象,并且我想向其中注入一个 dao。…
Spring MVC、Spring Security 和 Hibernate 无法在上下文之间自动装配属性
我正在使用 Spring MVC 3.0.6 和 Spring security 3.0.7。在安全上下文中时,我无法将 RoleDao 类 @Autowire 到我的用户类。 我的 web.xml 文件: con…
Spring AutoWired 服务类异常
伙计们,我很快就会生气:) 我有一个基本的 Service 类,如下所示 @Service public class CategoryService { @Autowired @Qualifier("categoryDaoImp")…
主方法类中的 Spring bean 注入
我有一个带有 spring 3.0 的网络应用程序。我需要从 cron 运行一个带有 main 方法的类,该类使用 appcontext xml 中定义的 bean(使用组件扫描注释)…
Spring的@Autowired不注入依赖
我有一个由各种模块组成的项目。 基本上,我使用过 Spring MVC 和 Spring MVC。 JUnit 4,一切都运行良好。 但是现在,我添加了一些与测试或 MVC 无关…
Spring 和自动装配:NullPointerException
我试图在 Spring 中掌握自动装配,但我似乎无法正确实例化 bean(一个 DocumentBuilder)。我已经创建了一个自定义 JSP 标记,如下所示: public clas…
Spring的@Autowired是一个巨大的性能问题吗?
我有一个项目...我不知道...200-300 daos/services/controllers,我使用 @Autowired 将所有内容连接在一起,而不是在 applicationContext.xml 中指定…
Spring:自动装配字段为空
我需要将外部 lib 类连接到我的 bean,以便将其用作单例。 .xml 配置: java bean: @Service public class MyBean { @Autowired private ExternalBea…
Spring @Configuration 类需要自动装配
我创建了一个 Spring @Configuration 带注释的类,我想将 ResourceLoader 自动装配到它,以便我可以在 @Bean 方法之一中使用它来查找由字符串给出的文…