6.9. Auto-configured TypeConverter
Camel 자동 구성은 Spring 컨텍스트에서 typeConverter
라는 TypeConverter
인스턴스를 등록합니다.
@Component public class InvoiceProcessor { @Autowired private TypeConverter typeConverter; public long parseInvoiceValue(Invoice invoice) { String invoiceValue = invoice.grossValue(); return typeConverter.convertTo(Long.class, invoiceValue); } }