无论如何都可以消除弹簧上下文xml并以编程方式打开注释



我是春天的新蜜蜂,在我的小型测试程序中玩"自动连线"注释。到目前为止,我已经了解到,要使"自动连线"注释工作,我们需要使用以下标签从 spring- context xml 打开它:

<context:annotation-config />

我想知道是否有任何方法可以消除xml并从程序中打开注释。

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

春季语境.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()); 
    }

}

将以下内容放入 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注释来注释您的学生豆类。

例:

@Component
public class Student {
...
}

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

AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MvcConfiguration.class);

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

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

幕后发生的事情是

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

相关内容

  • 没有找到相关文章

最新更新