Can I download the Java Elastic Beanstalk application using the command line tools for EB?
I know that I can upload my application to EB via the web console (by downloading the WAR file) or using the AWS instructions for Eclipse , However, I also want to see if I can use AWS DevTools to download updates to my EB application. I already used the eb command line tool to create and configure my git repository for my application, so I can use the command git aws.push. However, no matter what I try (pushing my entire workspace, pushing the repo only with the military file, pushing the repo with the contents of the contents of the bombed military file, as described in this blog post ), it never works. The zip file is uploaded to Beanstalk and my application becomes unhealthy.
I began to wonder if it was available git aws.pushfor PHP applications, not Java, as PHP is the only language mentioned in the AWS documentation for DevTools. Does anyone know if git aws.pushJava is available for applications?
By the way, I should mention that my .war file was created using mvn clean install, since my application uses the workspace on Maven. I know that the Maven Beanstalker Plugin , which I could use to download the application in Beanstalk, but nonetheless I still want to see if it git aws.pushis available to me.
SOF Related Post: Deploying a Java Web Application on Amazon Elastic Beanstalk