【问题标题】:Is there anyway to eliminate spring-context xml and turn on annotations programatically?有没有办法消除spring-context xml并以编程方式打开注释?
【发布时间】:2016-02-09 17:22:18
【问题描述】:

我是春天的新手,在我的小测试程序中使用“Autowired”注释。到目前为止,我已经了解到要使“Autowired”注释工作,我们需要使用标签从 spring-context xml 中打开它:

<context:annotation-config />

我想知道是否有什么办法可以消除xml并从程序中打开注释。

这是我的 spring 程序,它正在使用在 xml 中定义的 spring 上下文。

SpringContext.xml:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:context="http://www.springframework.org/schema/context"
            xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">


            <context:annotation-config />

            <!-- bean definitions go here -->

            <bean id="mainClass" class="com.myproject.spring.MyTester" />
            <bean id="student" class="com.myproject.spring.model.Student" scope="prototype" />
</beans>

我的豆子:

package com.myproject.spring.model;



public class Student
{
    private String name = "Johhn Hasel";


    public String getName()
    {
        return name;
    }


    public void setName( String name )
    {
        this.name = name;
    }

    @Override 
    public String toString() {
        return name;
    }

}

还有我这个应用程序的主要课程:

package com.myproject.spring;

import com.myproject.spring.model.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTester
{

    @Autowired
    private Student student;


    public static void main( String[] args )
    {

       ApplicationContext context = new ClassPathXmlApplicationContext("SpringContext.xml");
        MyTester mtster = context.getBean( MyTester.class );

        System.out.println(mtster.student.toString()); 

    }



}

【问题讨论】:

    标签: spring autowired convention-over-configur


    【解决方案1】:

    将以下内容放入您的 servlet xml 文件中:

       <context-param>
            <param-name>contextClass</param-name>
            <param-value>
                org.springframework.web.context.support.AnnotationConfigWebApplicationContext
            </param-value>
        </context-param>
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
    

    然后您可以使用一个 java 类来定义您的配置,该配置将使用 @Configuration 注释进行注释。

    带注释的配置类示例:

    @Configuration
    @ComponentScan(basePackages = "com.myproject.spring")
    @EnableWebMvc
    public class MvcConfiguration extends WebMvcConfigurerAdapter {
    
        @Bean
        public ViewResolver getViewResolver() {
            InternalResourceViewResolver resolver = new InternalResourceViewResolver();
            resolver.setPrefix("/WEB-INF/pages/");
            resolver.setSuffix(".jsp");
            return resolver;
        }
    
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
        }
    
        @Bean
        public Student student() {
            return new Student();
        }
    
    }
    

    您还需要使用 @Component 注释来注释您的 Student bean 类。

    例子:

    @Component
    public class Student {
    ...
    }
    

    如果您愿意,您可以使用下面的方式引用您的 bean 配置,而不是在您的 servlet xml 中定义注释配置上下文。

    AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MvcConfiguration.class);
    

    【讨论】:

      【解决方案2】:

      如果你有一个纯粹的独立应用程序,你至少需要

      1. 使用@Component 注释您的学生班级
      2. 使用 @ComponentScan 和 @Configuration 注释您的 MyTester 类
      3. 用新的 AnnotationConfigApplicationContext(MyTester.class) 交换 ClassPathXmlApplicationContext(..)

      幕后发生的事情是

      1. 您将学生标记为可自动发现的课程
      2. 将 MyTester 类设置为扫描组件的起点,并设置为可能包含 @Bean 定义等配置的类
      3. 告诉 Spring 使用以 MyTester 类为起点的 Annotation 驱动配置

      【讨论】:

        猜你喜欢
        • 2012-05-31
        • 2011-09-29
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2017-04-02
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多