Using clojure and leiningen with IDEs
I'm looking at switching my projects build from Ant to leiningen and wanted to know if there is a Clojure IDE (intellij, eclipse, netbeans) for which the "build" and "debug" buttons will still work? ...
I'm looking at switching my projects build from Ant to leiningen and wanted to know if there is a Clojure IDE (intellij, eclipse, netbeans) for which the "build" and "debug" buttons will still work? ...
For all the javax* classes Netbeans says javadoc not found. Anyone know how I can get javadoc to show? ...
I was asked to create, with Netbeans (glassfish), a Java Web service asynchronos that communicates with a external BPEL process.Is it possible? Can someone help me? give me some examples? thanks sorry for my English, I am Italian. ...
How do I record (or write) search and replace macro in Netbeans? I want to record the actions I do in Ctrl+H dialog. ...
I have installed the NetBeans IDE. Now I want to start to do something. But I do not understand the idea of the "project". I know that I can have source files, then I can compile them and execute. But what does the project mean? OK. I wanted to figure out that by opening a "New Project". But when I start it I need to select between the ...
Hello guys. I can't use Xdebug to debug a application built with Code Igniter, but i can use it to debug any other PHP file as long it doesn't use the same Structure for url solving that Code Igniter uses. Meaning: In a simple PHP file with no Code Igniter, when i use NetBeans debugging the browser goes to: http://localhost:86/index.ph...
Hello, I am coding a small GUI with netbeans and I am using objects from the Palette Manager. I have created a very simple application. Just a JLabel and a JTextArea. A small image here http://cateof.wordpress.com/2010/01/27/example-overflow/ (one image better than 1000 lines of code) I am looking for a "meta programming" idea for my G...
I am a newbie in Java. I am trying to figure out how to work this code. It seems to me that it would be very useful if in the beginning I get the general structure of the code (which methods exists and how they are interrelated). For example I see that "main" uses "createAndShowGUI" which, in its turn, uses "addComponentsToPane" and so o...
Hi I used to use Eclipse as my IDE for java. I am starting using NetBeans now. I used TAB key to get out of parentheses or brackets in Eclipse. Which key do I need to use for NetBeans? I don't want to use an arrow key to pass parentheses or brackets. Thank you. ...
Does anyone know how to integrate ProGuard with NetBeans 6.7/6.8 ? I've been using NetBeans for many years, but now I want to use ProGuard, is there a way to add it as a plugin and just click a button to start obfuscating my programs ? I know it exists in NetBeans Mobility Pack, how come it's not in the regular NetBeans version ? ...
I have debug Java Desktop Applications various times in Netbeans but haven't debug Java Web Application ever. I tried to debug it the same way, but it's not working. I have made an index.html webpage. There is a "form" on that page. After a user submits the form, the request goes to a servlet (say serv1). The servlet has been called bu...
Does anyone have any experience with a really good RIA platform. I'm going to begin developing an application, and I intend to use Netbeans RCP for the thick client. I'd also like to create a RIA version of the same app. I've looked around for a RIA framework that rivals what you can get with the Netbeans RCP, and really haven't found...
We are currently considering using Netbeans to develop a Jython application and I am in the process of evaluating Netbeans' features. It appears that creating a Jython application is trivial in Netbeans once the Python and Jython modules are installed. Yet I couldn't find a feature which would let we wrap my Jython app as a JAR file wit...
I created a Ruby-on-Rails project using NetBean 6.8, which operates as expected on port 3000. I created a second RoR project in the NetBeans IDE to experiment with some ideas; it operates on port 3010. Unfortunately, the webserver won't start. It returns the following: /Library/Ruby/Site/1.8/rubygems.rb:827:in `report_activate_error'...
I wonder if I can associate a task with a button defined by me in NetBeans 6.7/6.8 ? For instance can I add a button in Netbeans on the toolbar, and link it to a command, so that when I click this button, it will run this command, such as opening another program. I installed JD_GUI, it's an exe file, I want to have a button in NB so that...
I am trying to write a small app to play videos using JMF 2.1.1e in Netbeans 6.8, I have cross-posted it at Sun Java Forums and Netbeans Users forum (link can't be added since I am a new user). The code is as follows, package demo; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import java.util.logging...
Hi, im using NB 6.8. When i add a breakpoint an icon is added next to the line of code. But that icon is not a pink square but a vertically cutted in half pink square. Is this the new icon that symbolizes the breakpoint (i expected a non-broken pink square) ?? Bye Javi ...
I can create and use facelets custom components with netbeans. The steps I followed are: Create a Facelets tag library (mytaglib.xml). Declare the tag library in web.xml (javax.faces.FACELETS_LIBRARIES) Import the tagfile using namespace (xmlns:rde="http://test.com/mytaglib"). But I can not define the metadata of my custom components...
I'm using NetBean's Compile on Save setting, and it's really handy when I'm editing a single file. But when I'm dealing with a pair of (or more) class files and am switching between the files, I have a problem: The Task tab is nearly worthless since it is littered by HTML "error" messages(+) from many dozens of HTML files in the projec...
I have a class that extends javax.swing.JPanel, it contains a single JButton. I've created the class in NetBeans designer. As such, I have a initComponents() function thats called from the class constructor. What I want to do is when/if a function is called, I want to add a second button, and change the layout of the two buttons. Doing ...