a very simple java app to get an animal name and image with an url hosted with it.
- make sure jdk 1.8 or above installed on local machine.
- install eclipse
- download project as .zip
- choose open project from file system using file option
- select archive and let eclipse setup the project
- once setup completed open project.
- browse
src/main/java
package. - locate package containing
AnimalsApiApplication.java
file. - select
AnimalsApiApplication.java
and choose Run as :Java Application
. - to view on browser hit :
localhost:8080/
.
- add packaging as war in pom.xml
<packaging>war</packaging>
- click on project
- run as :
maven build...
clean package
as goal- a war file will be generated in target folder.
we will use ELasticBeanStalk
- create-applications
- choose Application name :
AnimalsApi
- choose platform :
Tomcat
- choose platform branch :
Tomcat with java
latest verison - upload application code from local machine/S3 url.
- click on
create Application
After successful creation of Application for first time a url is generated that can be later used to open the app.
that url can be used later to run the AnimalsApi.