Jean-Francois Leveque

Squelette d'application de recommandation

package org.legrog.recommendation.process;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class ProcessingApplication {
Logger logger = LoggerFactory.getLogger(getClass());
public static void main(String[] args) {
SpringApplication.run(ProcessingApplication.class, args);
}
@Bean
public CommandLineRunner process() {
return (args) -> this.run();
}
public void run() {
}
}
parameters.filename=${parameters.filename}
collectionSample.filename=${collectionSample.filename}
ratingSample.filename=${ratingSample.filename}
recommandations.filename=${recommandations.filename}
data.dir=dumb/
\ No newline at end of file