I know how to use DERBY using CMD, I followed the tutorials in Apache website. Now I will use DERBY in eclipse which requires the core and the ui zip files. I watched a tutorial on Youtube but when I open my eclipse directory there is no plugin folder but still I extracted the core and ui zip files and they created their own plugin folder but when I run the eclipse and create a new Java Project and hit right click there is no "Apache Derby" menu shown while in the youtube tutorial there is. Also I found another guide but I am confused at STEP 1. Here are the files I downloaded (already extracted in eclipse directory).
Related
So I have watched several videos and read through many a forum post on installing libgdx with android development studio. Every time someone opens the gdx-setup.jar download there is a file within names gdx-setup.jar that you click on and brings up a setup project menu. However each time i download this file is missing and this is all I find within the download.
Here is a link to the picture of what I get when I open the libgdx download, (since I do not have the 10 reputation yet to include the picture in my post.)
https://i.imgur.com/9DHTKVo.png
Just trying to get this framework setup so I can start learning more about using it in game development.
This documentation explains how to run the downloaded setup-gdx.jar to create a new project.
I guess, you're missing the part (or your OS is not picking up the correct application to run the jar file with [should be java]) how to run the downloaded jar:
Open up your command line tool, go to the download folder and run:
java -jar gdx-setup.jar
After that, if your OS has java or jre or jdk installed and configured correctly (JAVA_HOME variable set and exported) you should be able to see the UI.
I am an absolute Java noob so please be kind. I moved to Java web development from PHP recently.
I have Java source code which contains looks like this:
src directory which has .java files
rsc directory which has hibernate xml files
log4jcnf configuration file for log4j
pom.xml file with libraries listed.
WebContent directory
build.xml & a javadoc.xml
Now I would like to export a war file and deploy it on a remote server.
How do I import the code into eclipse, and download the library files and eventually export a WAR file.
I understand these are very trivial questions, but all the resources online assume that the reader is a java developer.
What I have tried so far:
"Open projects from file system" - I locate the "Import Source" and Finish but nothing happens.
New "Dynamic Web project" - I uncheck "use default location" and select the location where my project files are and I get an error
"A project already exists on the file system at this location: /home/path/to/webservice. Either use "Import Existing Projects into Workspace" to create a project at this location or delete the contents of /home/path/to/webservice from the file system."
It might be good idea to read these short tutorials, in case you are new to Java Web Development as well as to Maven.
Maven for building Java applications - Tutorial
Using Maven within the Eclipse IDE - Tutorial
Introduction to Java Web development - Tutorial
Java web development with Eclipse WTP - Tutorial
I have created a desktop application in netbeans IDE using sqlite-jdbc-3.7.2 jar
and I am using sqlite-jdbc.jar library to save and retrieve the user data. and I
am trying to make a installation file using clickteam install creator software or any
other setup installation softwares but I dont know how to add sqlite-jdbc jar and
some supportive jars in the installation setup file.
I want to open my web application which I made using Terminal/Text Editor on Linux into eclipse on windows.
I tried to open it by doing Import existing project but I don't see my servlet files i.e .java files in it and i also see error mark on my WEB.XML.
ty154 is my project name.
My Directory structure is
Tomcat -> Webapp->ty154
Ty154->Images & ->webinfo
Webinfo->classes
I have my JSP files in the ty154 folder and Images inside Image folder.
I have my .JAVA and .Class file inside Classes folder.
Please help me how to open and configure my project in eclipse.
Thanks in advance !!
Its not possible to import the project that you have created using terminal/text editor in to eclipse.You have to create a Dynamic Web Project under eclipse and copy paste the java files under source directory of the project. The jsp and other html files will go in to WebContents folder of the project. Once this is done the eclipse project can be copied and can be imported in to any other eclipse installations.The best read is:http://goo.gl/hPVapt
As you have written source code in terminal environment so you wouldn't be having an eclipse project file to be imported properly. First you need to create an eclipse project and then you can add source from your code directories. This link describes it pretty well:
http://thusithamabotuwana.wordpress.com/2011/06/15/importing-existing-source-code-into-eclipse/
If you have the war file, then you can import the war file directly in eclipse. Go to File>import then select war
For this you need to have Eclipse IDE for Java EE developers
The "Import Existing Project" entry only works for Eclipse projects.
In your situation with a simple project I would create a new Dynamic Web project and copy in the sources to the source folder - just Ctrl-c the files outside Eclipse, and Ctrl-v them inside Eclipse - and the static files to the publish location. You essentially need to know what has been done to ensure it has been done right.
I am taking a class on Android and I am a newbie with JDeveloper. I am working on a Web Services application. I downloaded some code that has a "Import org.apache.commons.binary.Base64". JDeveloper is barking "not found" for this import. I found on the apache website the org.apache.commons.binary.Base64 module and downloaded it. What do I do now? I am not sure how or where to place this code. The downloaded folder has several folders and and way down at the bottom of one of them is my Base64 module. Sorry for such a basic question. I am using JDeveloper 11g 11.1.1.0.2 running on Windows 7.
If you downloaded the source, which is just Base64.java, just add it to your project as
org/apache/commons/binary/Base64.java
If you downloaded a jar, add that to your project classpath. In JDeveloper this should be available from the project properties dialog and select "Libraries\Classpath".
Of course, if you distribute this project it will need to adhere to the Apache license.