Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


(info) Ovanstående pom.xml tillsammans med en applikationsklass annoterad med @ServiceApplication och en main-metod, samt en application.properties liknande nedan utgör i sig ett skal för en fungerande tjänst:

Code Block
languagejava
@ServiceApplication
public class MyApplication {

    public static void main(String[] args) {
        SpringApplication.run(MyApplication.class, args);
    }
}

...