9

我必须处理一个不能为 Spring 使用 Java-Config 的项目,但我必须使用 XML-Config。现在我正在寻找与 Java-Config 中的 @EnableRetry 等效的 XML-Config。

我想让这条线工作。

@Retryable(SQLException.class)
public void saveOrUpdate(Entity entity) 
4

2 回答 2

13

是的,@EnableRetry空的@Configuration将起作用(OP 评论)。

为了完整起见,这里是XML 中的等价物

<context:annotation-config />

<aop:aspectj-autoproxy />

<bean class="org.springframework.retry.annotation.RetryConfiguration" />

编辑

使用 XML 启用重试的完整示例:

@SpringBootApplication
@ImportResource("context.xml")
public class So31923175Application {

    public static void main(String[] args) {
        SpringApplication.run(So31923175Application.class, args);
    }

    @Bean
    public ApplicationRunner runner(Foo app) {
        return args -> {
            try {
                app.retry("foo");
            }
            catch (Exception e) {
                e.printStackTrace();
            }
        };
    }

    @Component
    public static class Foo {

        @Retryable
        public void retry(String param) {
            System.out.println(param);
            throw new RuntimeException("test retry");
        }

    }

}

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">

    <context:annotation-config />

    <aop:aspectj-autoproxy />

    <bean class="org.springframework.retry.annotation.RetryConfiguration" />

</beans>

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>net.gprussell.filemailer</groupId>
    <artifactId>so31923175</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>so31923175</name>
    <description>Mail non-empty files passed on the command line</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.springframework.retry</groupId>
            <artifactId>spring-retry</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

foo
foo
foo
java.lang.RuntimeException: test retry
于 2015-08-10T16:05:40.763 回答
0

我在尝试上述方法后的体验似乎有点不同,因为我正在寻找一种使用 XML 配置方法的方法。

1)我曾尝试通过在特定方法上指定@Retryable 来在我的服务实现类中使用此功能,但在类级别没有@Configuration 和@EnableRetry。重试功能不起作用。

2)我还尝试在类级别添加一个带有@Configuration 和@EnableRetry 的空类。然后,将该类配置为 XML 配置中的 spring bean。重试功能在这里也不起作用。

3)它似乎工作的唯一方法是在服务实现类上指定@Configuration 和@EnableRetry 注释。

我不确定我是否遗漏了第 1 点和第 2 点的任何内容。

于 2016-02-24T01:20:46.403 回答