Skip to content

Instantly share code, notes, and snippets.

@hudsonmendes
Created April 3, 2017 20:11
Show Gist options
  • Save hudsonmendes/83b1c0bce6450631874880b8a078ed73 to your computer and use it in GitHub Desktop.
Save hudsonmendes/83b1c0bce6450631874880b8a078ed73 to your computer and use it in GitHub Desktop.
AppEntry.java (V2)
package com.hudsonmendes.microservice1;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;
@SpringBootApplication
@EnableMongoRepositories
public class AppEntry {
public static void main(final String[] args) {
SpringApplication.run(AppEntry.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment