I am trying to migrate a tomcat application to AWS. Does it still mean I will be using tomcat on a AWS instance? What will be some of the challenges doing so?
Related
I have Java Web Application that runs on tomcat server, without any frameworks. My application works with MongoDB and I need to deploy it to AWS.
What are my steps need to be done?
Deploy war on Elastic Beanstalk?
Install Mongo on EC2?
What would be the process?
Actually, I don't understand how to use Mongo in AWS. Deploying war is simple but how to connect this project with my database?
MongoDB runs well in the cloud, both managed by yourself or through Atlas, the MongoDB-as-a-Service offering from MongoDB. The latter is probably the easiest way to get yourself started and may provide all the capability you require without having to take on management yourself.
https://www.mongodb.com/cloud/atlas
Disclosure: I used to work at MongoDB
I developed a Java EE 7 application, that uses Glassfish as the application server and MySQL as the database.
locally every thing is working correctly
now, I want to deploy the application to the cloud using AWS.
after reading some official documentations:
I created The database in the cloud 'AWS RDS', and conneted to it from MySQL Workbench and also The application in my workspace was able to connect to it and act on it.
Now for The application deployment I used Elastic Beanstalk with Glassfish 4.1 Java 8 (the docker one).
The probleme is that I need to configure Glassfish In AWS to
Create JDBC Connection Pool
Create JDBC Resource
Create A Security Realm
so that the apllication can work correctly.
How Can I do This?
I switch to Jelastic, I can access admin page usign their cloud, and I already deployed my appication
I'm working on a java spring web application. Every time I have a little change in application, there is no way for publish this change in weblogic except creating war file and deploy it to the server. I'm working on eclipse and I want to apply changes on live project in remote server(say 192.168.0.74 while I'm on 192.168.0.70). Is there any plugin or easy solution for this?
Thanks in advance.
For Eclipse development with WebLogic, install the Oracle Enterprise Pack for Eclipse to better integrate with WebLogic. You can then deploy to a remote server automatically.
http://www.oracle.com/technetwork/developer-tools/eclipse/downloads/index.html
I created a java web application in NetBeans.i was looking for a cloud service provider to deploy it.Most of the cloud platforms that i checked do not have any plugin for netbeans as they do for eclipse.
I tried to use the Google App Engine for netbeans 6.9 but that does not work for me.I also managed to deploy my app on jelastic but i am looking for some other options.Are there any other cloud service providers which i can use?
I am using glassfish as a server for my application.
While deploying your application on Jelastic did you face any difficulties?
Why are you searching for other options?
The plugin for NetBeans is still under the development and is going to be supported in Jelastic soon. So, stay tuned for updates.
My web application is made with Java, specifically with the Google Web Toolkit (GWT). The back-end used
GWT RPC RemoteServiceServlet
Hibernate/Java
MongoDB (via Morphia)
and other Java libraries
I really did not use any Spring framework at all, will my web application be able to be deployed in a CloudFoundry MicroCloud and in CloudFoundry.com hosting?
Will I be needing to reconfiguring my web application that has been tested and deployed in a Tomcat Server with MySQL and MongoDB database?
GWT should not be an issue.
If you want to deploy a java web app not using Spring, you can deploy it as a java web app, then parse the VCAP_SERVICES manually to configure your data sources from the application.
See http://blog.springsource.org/2011/10/13/using-cloud-foundry-services-with-spring-part-1-the-basics/ for details
https://github.com/SpringSource/cloudfoundry-samples/tree/master/hello-java
Why wouldn't it work?
In the event it wouldn't, that wouldn't be because of GWT at least: GWT-RPC runs in AppEngine, so there's no reason it wouldn't work in CloudFoundry.