Skip to content

Instantly share code, notes, and snippets.

@gonzalad
Created April 17, 2012 08:53
Show Gist options
  • Save gonzalad/2404708 to your computer and use it in GitHub Desktop.
Save gonzalad/2404708 to your computer and use it in GitHub Desktop.
public com.natixis.sample;
public class MyBatch {
public static void main(String[] args) {
//SimpleBatchLauncher se chargera de la gestion des codes erreurs et du logging.
SimpleBatchLauncher.execute(new Runnable() {
public void run() {
//c'est ici que j'écris mon batch...
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment