Questions tagged [netbeans-8]

NetBeans IDE 8.0 provides out-of-the-box code analyzers and editors for working with the latest Java 8 technologies--Java SE 8, Java SE Embedded 8, and Java ME Embedded 8. The IDE also has a range of new enhancements that further improve its support for Maven and Java EE with PrimeFaces; new tools for HTML5, in particular for AngularJS; and improvements to PHP and C/C++ support.

NetBeans IDE 8.0 provides out-of-the-box code analyzers and editors for working with the latest Java 8 technologies--Java SE 8, Java SE Embedded 8, and Java ME Embedded 8. The IDE also has a range of new enhancements that further improve its support for Maven and Java EE with PrimeFaces; new tools for HTML5, in particular for AngularJS; and improvements to PHP and C/C++ support.

New Feature Highlights:

Java

  • JDK 8 support: tools and editor enhancements for working with Profiles, Lambdas, and Streams.
  • Java SE Embedded support to deploy, run, debug or profile Java SE applications on an embedded device, such as Raspberry PI, directly from the NetBeans IDE.
  • Java ME Embedded 8 support.
  • Several Java Editor enhancements, such as many new Java hints, Javadoc shown as tooltip, instant rename enhancements, and code completion exclusions.
  • Improved integration with JavaFX Scene Builder.

Java EE

  • New PrimeFaces code generators, to generate complete PrimeFaces skeleton CRUD applications with connection to databases.
  • Tomcat 8.0 and TomEE support, including out-of-box JPA, JSF and JAXRS configuration and data sources.
  • Facelets Template Client wizard asks for sections to generate.
  • Code completion for template sections, and within JSF composite components.
  • Enhanced CDI integration in beans.xml file, with code completion for alternative classes and stereotypes.
  • More flexibility for JPA hints, which can be disabled, enabled, and warning level changed.

Maven

  • New Maven graph layout switcher.
  • Navigator shows POM goals.
  • Additional web resources shown in Projects window.
  • Improved Maven performance when re-running Web applications.
  • Improved Maven performance of "Apply Code Changes" while debugging.

JavaScript

  • AngularJS navigation via hyperlinking from view to controllers.
  • Many enhancements for AngularJS in code completion between artifacts, such as code completion in the view to properties defined in controllers.
  • Code completion support in Knockout templates.
  • New editor support for creating JQuery widgets and plugins.
  • Debugging of JavaScript code executed in Nashorn (JDK 8+) script engine is supported.

HTML5

  • Android 4.4 WebKit debugging supported for Cordova 3.3+.
  • New Karma test runner support.
  • New Grunt build support.
  • Avatar.js is available in the Plugin Manager, via Tools | Plugins. After installation, you're able to create Avatar.js projects.

PHP

  • Support for PHP 5.5.
  • New support for Nette tester.
  • New support for PHP CS Fixer.
  • Enhancements for Twig, Latte, and Neon.
  • Composer supported by New Project Wizard.

C/C++

  • New Breadcrumbs feature for navigation in editor.
  • New GDB Console to enable usage of command line GDB mode.
  • New hints and code completions.
  • Improved remote performance.

Platform

  • Enhanced flexibility in the Window System, such as split of editor via drag and drop, and a new API to customize editor tabs.
  • New design of user interface for managing Project Groups.
  • Files in folders can be sorted by extension.

Miscellaneous

  • Profiler enhancements: Profile on embedded platforms, show thread owning monitor for lock contention, and improved Threads view.
  • Versioning enhancements: Support for Subversion 1.8 working copies, various enhancements to Git and Mercurial support.
  • Task Schedule and other new features in Tasks window for bug tracking.

Official Website: http://netbeans.org/
Official Release informations: https://netbeans.org/community/releases/80/

Release Date: 18.03.2014

Tagging recommendation: It is recommended to use the tag together with the version specific tag.

1758 questions
0
votes
1 answer

semi colon missing eror

private void add_computer_buttonActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: try{ String url…
klbm9999
  • 31
  • 1
  • 9
0
votes
1 answer

java awt color chooser does't show in proper way in JavaFx

@FXML Private void handleItemBackAction(ActionEvent eve) { java.awt.Color color=JColorChooser.showDialog(null,"Select a color",java.awt.Color.CYAN); String hex = Integer.toHexString(color.getRGB() & 0xffffff); hex="#"+hex; …
Drashti Pandya
  • 348
  • 1
  • 5
  • 15
0
votes
0 answers

How do I hide resource folders for other Maven build profiles in Netbeans?

I've got a Maven project which has two build profiles. These build profiles have different resource directories. When I work with any of these two build profiles, NetBeans show all resource directories. I'd like to only see the resource directories…
sbrattla
  • 5,274
  • 3
  • 39
  • 63
0
votes
1 answer

db.lck appears while compiling a java program using a derby database

Recently I have been trying a lot and scratching everywhere to connect to a derby database using NetBeans 8.0. After a lot of research in SO (link1, link2, link3, link4) and everywhere else I am unable to understand that how to make it go away.I…
mustangDC
  • 945
  • 1
  • 12
  • 33
0
votes
1 answer

Error: java.lang.ClassNotFoundException: org.apache.mahout.common.RandomWrapper

I am building a Software using Java 8 with Hadoop and Mahout 0.10.0 with some custom changes in the code of Mahout Library. I am using Maven to manage dependencies. Other dependencies are being handled by the maven like hadoop common and hdfs and…
Rahul Agarwal
  • 111
  • 1
  • 12
0
votes
0 answers

Java Create File sequence, start from 01 for each new date and increase depending on total file per day

I am doing a project and it requires to create file sequential. Is it possible to create File sequence, starting from 1 for each new date and increase depending on total file per day? Something like: Today:01.txt, 02.txt, 03.txt Tommorow: 01.txt,…
0
votes
1 answer

Shortening code for changing background and text colour for Jlabel clicked (Making JLabel Tabs) - Netbeans

I have 7 Jlabels in my JFrame and I want achieve clicking on 1 JLabel setting the background to black and the text colour to white while leaving the other Jlabels backgrounds white and black text with as minimal code possible. I managed to do it but…
Matt J
  • 99
  • 2
  • 12
0
votes
1 answer

Netbeans C++ build fail (Error 2)

I have installed Netbeans on both my Windows 8 machine, and a Ubuntu VM to see if the errors were consistent and they are. After I install Netbeans, I can run a short script and everything is fine. If I add a file to the program, Netbeans breaks and…
0
votes
0 answers

web service deployment error

I have a simple web service that was work just fine..two days ago now I'm trying to complete my code but I have a strange issue some time I can clean and build the project but when I try to test the web service I've got an error message that I can't…
Hanan Mahmoud
  • 65
  • 1
  • 1
  • 10
0
votes
0 answers

Netbean 8 with Bitbucket "clone" issue

I am trying to clone a repository using inbuilt Netbeans git plugin, but it is giving me error "Cannot connect to repository" So far I've tried: Added bitbucket.org entry into host file. Checked the firewall used to connect internet for netbeans…
Pankaj Dubey
  • 146
  • 10
0
votes
1 answer

How to fix java.lang.NoClassDefFoundError in Netbeans?

I'm developing a library (fpotencia) wich I use from a GUI program (fpotenciaui). The library uses the commons math library. When I run the GUI program I get: Exception in thread "main" java.lang.NoClassDefFoundError:…
Santi Peñate-Vera
  • 1,053
  • 4
  • 33
  • 68
0
votes
0 answers

Adding and subtracting from two tables javaDB

I have problem on adding and subtracting values from different tables using SQL, adding and subtracting works fine, but it returns an INCORRECT values here is my query to add the "QUANTITY" from table 1(DELIVERIES table) that is grouped by…
0
votes
0 answers

Netbeans 8 like AutoComplete in Visual Studio 2013

In Netbeans auto complete suggests partially matching words e.g. x.fb will also suggest x.FooBar. Can I replicate that with a smaller plugin in Visual Studio 2013? Resharper is resource hungry (and not free) and will be an overkill for only…
SMUsamaShah
  • 7,677
  • 22
  • 88
  • 131
0
votes
3 answers

Web page shows the following error

Created a folder called Coffe website. Saved this folder in xampp/htdocs. Gave the project url as localhost/xampp/Coffewebsite. Netbeans connector is active in chrome. It says web_page is not_available. Error messages: Warning:…
Roy
  • 3
  • 1
0
votes
2 answers

Netbeans + ZF2 - Type hinting in view files

The task is simple, I want to add type hinting in Netbeans so I can get code assist in view files. How to do it the right way? The example below does not work: /** * @var \Zend\Paginator\Paginator $this->paginator */ $pageOffset =…
Antoniossss
  • 31,590
  • 6
  • 57
  • 99
1 2 3
99
100