Clement Levallois: My Five Favorite NetBeans IDE Features!
Join the DZone community and get the full member experience.
Join For Free
continuing a series of articles focusing on netbeans users and their five favorite netbeans ide features , here's the next part, by clement levallois. -- netbeans team.
clement levallois (
github
,
web
,
work
) is an assistant professor at emlyon business school in lyon, france. his initial education was in social sciences and the humanities, while he has a phd in the history of science.
he shifted to data-intensive research topics around 2009 and learned java at this time to be able to contribute to gephi . ever since, he's been hooked on java, gephi, and netbeans. a project he's working on for 2015 is to develop a course for non coders, that is, business students, on how to create an android app with netbeans.
what are your five favorite netbeans features?
-
robustness.
coding needs all my attention, so my development environment should help structure my work without standing in the way.
netbeans is perfect for that. it just works. it never freezes, and it never bothers with exceptions, and i don't need to fix it. i take that for granted now and that is why i would not be able to change netbeans for another development environment.
-
automatically generated projects, classes, configurations, and hints.
as a beginner, it helps that many code snippets can be generated automatically in netbeans, such as these:
then, once i learn how the process really works, i can choose to continue using netbeans shortcuts or start coding things for myself for greater flexibility. i learned how to use rest web services in this "click and point" manner.
hints suggested in the margin remain live savers. for example, i like to be reminded when the type of a variable is probably incorrect or to be suggested a useful code refactoring, such as converting a "for loop" to an iterator in one click, when i need to remove an item from a collection.
-
rich client platform.
i am part of the community developing
gephi
, a free and open source software to visualize graphs.
gephi is a rich client application built in java on the netbeans platform , which has been downloaded 600,000+ times since 2013. my contribution consists in helping the community of users and in developing new plugins:
http://marketplace.gephi.org/plugins/
netbeans greatly facilitates this process of creating plugins.
it also assists in distributing them to any user who has installed gephi. updates are even delivered automatically to our clients!
-
java ee rocks in netbeans ide.
for example, you can debug a client and multiple servers at the same time.
i am currently developping a plugin for gephi running on the netbeans platform, coupled with two wars on glassfish and one on tomcat. it could have been a nightmare of complexity to debug this environment. but i test all of that locally in netbeans and it works great. with debugging, i can follow the execution of the code step by step back and forth between the client and the two servers. no glitches at all.
-
frontend development.
using frontend technologies like jsf 2 and html5 is made easy in netbeans. for my students and general users, i have developed small web applications which usually have server-side data intensive aspects. here are some examples:
umigon.com
realtimeopinion.com
sleep-or-think.com
admittedly, i am the worst web designer, so it helps having a java framework to design components out of the box with minimal need for javascript, while taking care of the client/server communication.
jsf 2, together with primefaces, works great for that, and again they are perfectly integrated in netbeans ide. that's a one click setup and there are many code generation helpers and hints when needed.
fancy but really important is that i can just plug my my own android mobile phone into my laptop and choose it as a web browser to deploy a web page on. realtime testing of a responsive design, hurray!
contribute to this series! do you and your colleagues also want to share your team's favorite netbeans features with the world? write to netbeans dot webmaster at gmail dot com.
Opinions expressed by DZone contributors are their own.
Comments