反正有没有消除spring-context xml并以编程方式打开注释?

时间:2016-02-09 17:22:19

标签: spring autowired convention-over-configur

我是春天的新蜜蜂,正在玩“自动化”#39;我的小测试程序中的注释。到目前为止,我已经学会了制作“自动装配”。注释工作我们需要使用标签从弹簧上下文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()); 

    }



}

2 个答案:

答案 0 :(得分:2)

将以下内容放在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);

答案 1 :(得分:1)

如果您拥有纯粹的独立应用程序,则至少需要

  1. 使用@Component
  2. 注释您的学生班级
  3. 使用@ComponentScan和@Configuration
  4. 注释MyTester类
  5. 使用新的AnnotationConfigApplicationContext(MyTester.class)交换ClassPathXmlApplicationContext(..)
  6. 幕后发生的事情是

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