Skip to main content

Algunos anuncios importantes de JavaOne2007

NetBeans.org is proud to announce the availability of NetBeans 6.0
Integrated Development Environment (IDE) Preview release.
Here are some of the highlights:
  • Ruby/JRuby/Ruby on Rails Support
  • A Smarter and Faster Editor
  • Improved Swing Development (Swing Data Binding)
  • Integrated Profiling
  • Integrated Visual Design for Web Applications
  • New, Integrated UI for CLDC/MIDP and CDC Development
The final NetBeans IDE 6.0 release is planned for November 2007 however
you can now experience what it has to offer in the current stage of
development. As always, we welcome and encourage your feedback and
sharing of your
experience using the NetBeans IDE on our mailing lists
and in your blogs!


News from NetBeans Day San Francisco and JavaOne 2007


NetBeans Software Day 2007 in San Francisco in Review

What happens when 1000 NetBeans enthusiasts gather together in one

massive center? Take a look back at a successful NetBeans Day!

NetBeans Community Embraces Scripting with NetBeans IDE 6.0 Preview
Sun Microsystems, Inc. together with the NetBeans community, announced
the availability of the NetBeans 6.0 Integrated Development Environment
(IDE) Preview release
which extends support beyond Java and C/C++ by
providing a rich set of features for the Ruby and JavaScript dynamic
scripting languages, and continues to enable developer productivity
with ease-of-use and support for the latest Java standards.


JavaFX and NetBeans

JavaFX is a new family of Sun products based on Java technology and

targeted at the high impact, rich content market and is initially

comprised of JavaFX Script and JavaFX Mobile. Plug-ins are already

available through the Update Centers for both NetBeans 5.5 and NetBeans

6.0 Preview (Milestone 9).

Rich Client Programming: Plugging into the NetBeans Platform
This book provides a conceptual overview of the NetBeans Platform and a
practical guide to creating IDE modules and rich-client applications
based on the platform. Have a look at a sample chapter and the table of
contents. You can order it from Safari or Amazon.


NetBeans Magazine Issue 3, May 2007
To commemorate the largest NetBeans Day ever, the NetBeans community
has put together a special issue of NetBeans Magazine with a whopping
84 pages of in-depth technical articles. Issue Three showcases the
flexibility and versatility of the IDE and Platform, and the upcoming
features in NetBeans 6.0. You can view the magazine as a whole or as
individual articles. And now you're also able to access simplified HTML
versions of each article, or get the full visual experience from the
PDF's.


NetBeans.TV
A developer orders a NetBeans CD. The post office fails in getting it
to the developer. We send two guys on the road to hand-deliver it!
Experience the misadventures that takes our wacky guys to three
countries meeting NB developers along the way. Watch the trailer that
was played at NetBeans Software Day or follow their trip entry by
entry from the road. What's next? Your video! - Take part in a video,
photo and text competition to win prizes and have Micah & Martin come
to your town with their camera bearing gifts. Get your 15 minutes of fame!

Comments

Popular posts from this blog

Cambiando el estado de un checkbox

Cambiando el Estado de un CheckBox Algunas veces deseamos controlar el estado de un checkbox o cambiarlo segùn determinadas condiciones. Pasos: 1. Creamos un proyecto Web. 2. En el diseñador agregamos un checkbox y dos botones. * Dar click derecho en el checkbox y luego seleccionar Add Binding Attribute, para agregar los atributos al checkbox, de manera que los podamos usar en nuestro código. Generando automáticamente private Checkbox checkbox1 = new Checkbox(); public Checkbox getCheckbox1() { return checkbox1; } public void setCheckbox1(Checkbox c) { this.checkbox1 = c; } 3.Damos click derecho en el botón Habilitar, y seleccionamos Edit Action Event Handler. A continuación, agregamos el código: this.checkbox1.setSelected(true);, el método setSelected con valor true, marca el checkbox como seleccionado, y un valor de false, quita la marca. public String button1_action() { // TODO: Process the action. Return value is a navigation //

Corregir el error el archivo de manifiesto en proyectos maven

Corregir el error en el archivo de manifiesto en proyectos maven Si creamos un proyecto maven con NetBeans e intentamos ejecutarlo encontraríamos el siguiente error Agregamos el plugin   <artifactId>maven-jar-plugin</artifactId>  <plugin>                 <groupId>org.apache.maven.plugins</groupId>                 <artifactId>maven-jar-plugin</artifactId>                 <version>2.4</version>                 <configuration>                     <archive>                         <manifest>                             <mainClass>org.javscaz.maven1.App</mainClass>                         </manifest>                                           </archive>                 </configuration>             </plugin> Luego al construir el proyecto con dependencias, podemos ejecutar el .jar

Tutorial básico de aplicaciones Web con NetBeans parte 1

NetBeans ofrece un excelente soporte para el desarrollo de aplicaciones Web, en esta ocasión lo haremos utilizando el Framework Java Server Faces 2.0. En el Menu Seleccionamos Nuevo->Proyecto y luego en Categorias Java Web y en tipo de Proyectos Web  Application indicamos el nombre del proyecto Seleccinamos el servidor Web, usamos GlassFish ya que este soporta EJB3.0 y JSF 2.0 Framework Java Server Faces El IDE genera el esquelto del proyecto Web Pages   almacenamos las paginas .html, xhtml, jsf, los archivos de recursos, los scripts .js, imagenes Source Packages    Son las clases Java  Test Packages    Son las clases que usamos para los Test Libraries     Tenemos las bibliotecas de Java y GlassFish necesarias para ejecutar la aplicación Web. Test Libraries     Están las bibliotecas usadas para los test  Configuration Files    Archivos de configuración de la aplicación. Ejecutamos la aplicación  Esperamos que se inicie GlassFish y se cargue la aplicación Este se