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 3 years ago.
Improve this question
I have a JSP-based website in Netbeans which requires some additional libraries. Everything's fine, unless I copied all the project into the ROOT folder of Tomcat. I don't know how to config Tomcat to use those libraries, and so the project cannot be run.
As far as she is using Netbeans, her best bet is to configure Tomcat with Netbeans, its a matter of second and quite handy.
Otherwise, if she is following the standard directory structure she should be able to just drop the whole application directory into TOMCAT_HOME/webapps directory. And she will find her application listed in Tomcat manager.
I hope this would help. Moreover, her best bet is to ask herself. :)
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 5 years ago.
Improve this question
I need to learn java programming, I have a LAMP server running and i need to build a webapplication(dynamic website). I have planned to use HTML, CSS, JS and Java for server side scripting instead of PHP using eclipse IDE.
My question is does the above thing work out and also if i want to deploy the files do i need to send the files to /var/www/html/ or any other method of deployment is there ?
Your question is weird, but yes, you can make a application with Java for the server side, read about JSP. And the files folder depends on the local server you're using , though most of the time for unix thats the right folder.
Good luck , I think you research a lot.
Edit: I was about to edit this for the LAMP definition, LAMP stands for Linux, Apache, MySQL and PHP... So you're not technically using that..
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 years ago.
Improve this question
In our organization, We have one server in which one folder Log/Response is there. In this folder so many files will be there (XML file). Now I want to write a program to find all XML files which has a 'keyword' in Java, if possible. And after finding all such file it should return all files name. Here 'keyword' will be given from client (means user will open one URL/keyword from his browser).
So how can I achieve this thing? Which technology, language and tool I need to use? If I write a program then where exactly I should put it?
You can start from JSP/Servlet as starting point. JSP/Servlet will be communication point between user and server infrastructure where a list of files is located.
To search necessary file: as simple solution you can scan all files in necessary directory. But it will be slow. As more advanced solution, you should use some full text search engine(search will be fast).
Of course, JSP/Servlet will be deployed in servlet container such as Jetty or Tomcat.
That is all :)
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 6 years ago.
Improve this question
After installing intelliJ IDEA, when I create a new project, I'm presented with this:
But those pages should be opened with JAVA EE :
Should I install anything else?
Edit.: Understood what you mean - I managed to restore some of the sections in the Java by enabling corresponding plugins: Hibernate, Google App Engine, etc.
So, you need to do the same and enable plugins that you want.
if i understand, you don't see the Java EE plugin in your version of intellij.. if it is the case, i think you have to continue ( Next till your project opens). once it's done go to File -> Settings ->Plugins.
you should see this.
Java EE plugins.
this is the list of plugins you need.
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 6 years ago.
Improve this question
I'm working on a big project and the test component is consumed me the most part of the time.
Why ?
When I made some changes in a project during the debug, to suffer effect I have to stop the debug, deply and debug again. And I know if I change the configurations, I can do some changes during the debug. Anyone know what I need to do?
Another problem:
To do the deploy of some changes, how can I do without deploy all of the project ? This consume more than 7 minutes.
Thanks in advance
Damian, JRebel should be the best solution for you. But it is not free and you need to pay to use it. Some Servers already have in some versions of it the functionality you want. Do a research about hot deploy.
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 8 years ago.
Improve this question
If I have a Java web project on github, is it possible to create a github page from the source files? Something like this (How is posible add several javascript libraries to main html?).
You can't run your Java application on GitHub. For this purpose you need an application server, for example Tomcat, Glassfish, or Wildfly. Github gives you the opportunity to show only HTML pages with JavaScript.