1

私はSpring Webflowを使用しています。

FormattingConversionService設定しました。この変換サービスでは、次のように構成されています。

  • ConverterFactoryString 値をMyInterfaceインスタンスに変換するための A (オブジェクトにバインドされます)
  • ConverterオブジェクトMyInterfaceを Stringに変換するA (表示用)

「ConverterFactory」が呼び出され、完全に機能します。

私の問題は、Converterが呼び出されないことです。がページにtoString()表示されます。

表示目的でSpringにオブジェクトインスタンスMyInterfaceを変換させるにはどうすればよいですか?String

これが私のconversionService宣言です:

<bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
    <property name="converters">
        <set>
            <bean class="myclasses.StringToMyInterfaceConverterFactory"/>
            <bean class="myclasses.MyInterfaceToStringConverter"/>
        </set>
    </property>
</bean>

MyInterfaceToStringConverter:

@Component
public class MyInterfaceToStringConverter<T extends MyInterface> implements Converter<T, String> {

    public String convert(T source) {
        if (source == null) {
            return null;
        }
        return source.getCode(); // This is a method in MyInterface which returns a String
    }
}
4

1 に答える 1

1

動作している ConversionService 構成の例:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

    <!-- Enables the Spring MVC @Controller programming model -->
    <mvc:annotation-driven conversion-service="conversionService" />

    <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <bean class="myclasses.StringToMyInterfaceConverterFactory" />
                <bean class="myclasses.MyInterfaceToStringConverter" />
            </set>
        </property>
    </bean>
</beans>
于 2015-03-19T08:30:46.977 に答える