How to launch Java - spring-webflow in VirtEngine

Introduction

Spring Web Flow facilitates building the j2EE based web applications that require guided navigation – e.g. a shopping cart, flight check-in, a loan application, and many others. In contrast to stateless, free-form navigation such use cases have a clear start and end point, one or more screens to go through in a specific order, and a set of changes that are not finalized to the end.

This tutorial will guide you in launching a J2EE web application (spring-webflow) in VirtEngine.

###Prerequisites

You have to install openssh-server for ssh access.

sudo apt-get install openssh-server Check SSH working properly

ps aux | grep sshd In this tutorial you will see the steps to launch the J2EE using Spring-webflow application.

###Step-1 Fork spring web-flow

  • To fork spring web-flow https://github.com/verticeapps/java_springwebflow.git

  • You will be see the fork option in the top right corner of the git hub page.click the fork option.

  • The spring web-flow repository is forked into your git repository.

###Step-2 Launch the app

  1. Go to VirtEngine Dashboard

  2. Click Marketplace on the top bar.Marketplace contains all the linux distros, applications, services and microservices which VirtEngine supports.

  3. Click Java Icon.A window will pop up for your git repository selection.

  4. Pick a repository by choosing your repository.

Let us use Github: < mygithub >/java_springwebflow.git

  1. You can create new sshkey or use an existing sshkey or upload your own sshkeys too.

  2. To launch J2EE App.Click Create.

  • Voila ! Your App is up to date.

  • Now that you have launched your app, you might want to launch a service (database) and bind it

*Rember that when you select memory its upto 2GB

####Buildpack for Java

Java’s default build pack get’s going by kicking of maven. We plan to support ant, gradle in the future

#!/bin/bash
#Java builder WAR

#megam_java_builder/build tomcat

megam_home="/var/lib/megam/gulp"
local_repo="/home/megam/tomcat/webapps"
remote_repo="https://github.com/vinomca-megam/spring-webflow-samples.git"

filename=$(basename "$remote_repo")
extension="${filename##*.}"
filename="${filename%.*}"

  rm $local_repo/*.war
  cd $megam_home
  rm -r $filename
  git clone $remote_repo
  cd $filename
  mvn clean
  mvn install -Dmaven.test.skip=true -U

stop java
start java

###Step-3 Open Your Web browser You can access your web page using https://IP_ADDRESS:8080

You will show the below UI

Select the Manager App.It asks User Name and Password Username and password is "megam"

Then the below UI will be open

Here you will click the webflow show case link.

###Conclusion

These are the very simple steps to launch a J2EE web app (spring-webflow) using github repository.

###Deploy Java app now

VirtEngine by DET.io

VirtEngine by DET.io
VirtEngine specializes in building Virtualization Software and powering Cloud Service Providers / Hosting Providers..

Meet VirtEngine at HostingCon India 2016!

Virtualization platform VirtEngine will be exhibiting in HostingCon India 2016! Continue reading

Installing VirtEngine on CentOS

Published on October 18, 2016

Cassandra Replication - HA

Published on July 14, 2016