Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I have a servlet application with JPA and Vaadin, it's running on GlassFish server.
Am I using Java EE here? Or is still Java SE?
Servlets are not part of Java SE, but of Java EE. So you are using Java SE and some parts of Java EE.
SE doesn't come with server or any other software stack so If your application is using above tools there is a higher chance that your application is using EE here.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 days ago.
Improve this question
There is a Java Spring application running on JRE 7 in QA Unix environment, what steps do I need to follow to migrate it to JDK 8? considering it uses Maven build tool and gitlab ci/cd pipeline?
I think installing jre 8 on Unix environment, recompiling the project, and deploying it will work, but I'm not sure If I'm missing some steps here?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I installed netbeans with JAVA EE but i want to use this JAVA EE version with eclipse instead of installing another version for eclipse only.
You can install Apache Tomcat (Servlet Container) or Apache Tomee (JEE support) and then configure Eclipse or Netbeans with them.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Hello I want to know how to deploy Java SE application on aws?
I have created one java application.Now I want to run
that application on aws
Try using Elastic Beanstalk. It will allow you to run your java app without needing to pull up a whole EC2 instance.
https://aws.amazon.com/elasticbeanstalk/?nc2=h_m1
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Are there any Java EE frameworks that are similar to CodeIgniter for PHP?
I need to convert a PHP web app to Java for my company. (This is because they want to deploy the app on a Heroku Server) Currently, the application uses the CodeIgniter framework. This is my first Java EE project and I am in the process of learning JSF right now, but while I am doing that, I would like to know of possible frameworks that I should be looking at/ considering for this project.
Not sure abt Heroku deployment, but Spring is a very capable f/w in Java. For small to medium size apps, Play f/w is also a good option.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm looking for an Java based Application server which should be controllable within an Java application. I want to be able to start/stop the server within the application.
So far most App servers I looked at Glassfish, JBoss, are all controlled from the OS instead of being able to integrate into an existing Java Application.
Get a look at Winstone or Jetty, they are easy to embed in an application:
http://winstone.sourceforge.net
http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty