I had completed my java ee application with postgres on my Windows development machine. Now, I would like to deploy it to CentOS linux.
However, the concept wasn't as straight forward as I think.
I had to export my project as .war file, then install Wildfly, install Postgres, setup Datasource in standalone.xml, then deploy in Wildfly Console. It seems too much work (especially setting up datasource).
I used to work with Ruby on Rails, where we have a git source control, and we just git pull on the server to deploy, but things don't seems that straight forward for Java EE.
Am i missing something?
Thanks