Create war file from Spring:boot project in Eclipse
I am pretty new to Spring Boot and I have completed a application that works well on my localhost. As I have been told to deploy it outside my localhost on for example a webbhotel or simular I need to export the project as a war-file and not as a jar-file. UPDATE!! I run the project as a Springproject generated in Spring Initialzr and using Eclipse as a IDE. In Eclipse I have followed the steps <packaging>war</packaging> and <dependencies> <!-- … --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency