使用@Autowired时将原始属性注入Spring bean?

ray*_*.ng 0 spring autowired

尝试通过Spring注入以下内容的myInt

public class MyBean {
@Resource (name="myValue")
private int myInt;
Run Code Online (Sandbox Code Playgroud)

任何的想法?我有以下职位。但这对我不起作用。我仍然收到以下错误消息。

Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'myValue' must be of type [int], but was actually of type [java.lang.Integer]
Run Code Online (Sandbox Code Playgroud)

详情:

以下是我为此测试创建的测试servlet。

@WebServlet("/myTestServlet")
public class myTestServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

public myTestServlet() {
    super();
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doProcess(request);
}

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doProcess(request);
}

private void doProcess(HttpServletRequest request)
{
    WebApplicationContext applicationContext =
    WebApplicationContextUtils.getWebApplicationContext(
        ((HttpServletRequest) request).getSession().getServletContext());
    MyService service = applicationContext.getBean(MyService.class);
    service.doPrint();

}
}
Run Code Online (Sandbox Code Playgroud)

以下是我用于此测试的服务bean。

public class MyService {
//  @Autowired
//  @Qualifier("myValue")


@Resource (name="myValue")
private int myInt;

public void doPrint ()
{
    System.out.println("myInt is " + myInt);
}
}
Run Code Online (Sandbox Code Playgroud)

以下是applicationContext.xml我正在使用的

<context:annotation-config />

<bean id="myService" class="tsttst.MyService" >
</bean>

<!-- Global configuration -->
<bean id="myValue" class="java.lang.Integer" factory-method="valueOf">
    <constructor-arg value="1000" />
</bean>
Run Code Online (Sandbox Code Playgroud)

以下是使用时出现的错误 @Resource

Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'myValue' must be of type [int], but was actually of type [java.lang.Integer]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:349)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:435)
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:409)
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:541)
    at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:147)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84)
    at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessPropertyValues(CommonAnnotationBeanPostProcessor.java:297)
    ... 21 more
Run Code Online (Sandbox Code Playgroud)

但是,如果使用@Autowired,将导致以下错误

Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private int tsttst.MyService.myInt; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [int] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=myValue)}
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:507)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:283)
    ... 21 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [int] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=myValue)}
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:914)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:783)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:697)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:478)
    ... 23 more
Run Code Online (Sandbox Code Playgroud)

Boz*_*zho 5

如何定义int?

如果它是property(例如,带有占位符配置器),则可以使用@Value

如果<bean id="myValue" class="java.lang.Integer">..</bean>使用构造函数-arg或工厂方法定义它,则@Autowired/ @Resource应该起作用。

至于自动拆箱-似乎不起作用,因此您需要一个Integer
您也可以尝试<util:constant .. />