I\'m getting back into Spring (currently v4). It\'s all wonderful now with @SpringBootApplication and the other annotations but all the documentation seems to f
As long as you're starting with a base @Configuration class to begin with, which it maybe sounds like you are with @SpringBootApplication, you can use the @ImportResource annotation to include an XML configuration file as well.
@SpringBootApplication
@ImportResource("classpath:spring-sftp-config.xml")
public class SpringConfiguration {
//
}