1 / 26

JavaOne 2007

JavaOne 2007. Ole André Scheie IBM GBS. Agenda. Stress Your Web App Before It Stresses You (TS-9235) Advanced Enterprise Debugging (TS-4588) JavaFX Script - Highlevel intro (TS-3420). Stress Your Web App Before It Stresses You. Stress Your Web App Before It Stresses You.

Télécharger la présentation

JavaOne 2007

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JavaOne 2007 Ole André Scheie IBM GBS

  2. Agenda • Stress Your Web App Before It Stresses You (TS-9235) • Advanced Enterprise Debugging (TS-4588) • JavaFX Script - Highlevel intro (TS-3420)

  3. Stress Your Web App Before It Stresses You

  4. Stress Your Web App Before It Stresses You

  5. Stress Your Web App Before It Stresses You

  6. Stress Your Web App Before It Stresses You

  7. Stress Your Web App Before It Stresses You

  8. Stress Your Web App Before It Stresses You

  9. Stress Your Web App Before It Stresses You

  10. Stress Your Web App Before It Stresses You

  11. Stress Your Web App Before It Stresses You

  12. Stress Your Web App Before It Stresses You

  13. Advanced Enterprise Debugging

  14. Advanced Enterprise Debugging

  15. Advanced Enterprise Debugging

  16. Advanced Enterprise Debugging

  17. Advanced Enterprise Debugging

  18. Advanced Enterprise Debugging

  19. Advanced Enterprise Debugging

  20. Advanced Enterprise Debugging

  21. Advanced Enterprise Debugging

  22. Advanced Enterprise Debugging

  23. JavaFX • JavaFX, a new family of Sun Microsystems products based on Java technology and targeted at the high impact, rich content market • Består foreløpig av JavaFX Script og JavaFX Mobile • Det er planlagt flere ”medlemmer” av JavaFX familien

  24. JavaFX Script • JavaFX Script is specifically designed to optimize the creative process of building rich and compelling UIs leveraging Java Swing, Java 2D and Java 3D for developers and content authors. • Skal gjøre det enklere å utvikle GUI komponenter • Skjuler mye av kompleksiteten ved Swing / GUI utvikling • Kjører på Java SE 6 • Finnes en standalone editor (JFXPad) og plugins for NetBeans og Eclipse • Fungerer på websider vha. en applet på siden • Lansert som ”Flash killer” men må fremdeles pakkes og deployes som vanlige java applikasjoner og disse må lastes ned av browseren (på samme måte som applets) • Mer info på https://openjfx.dev.java.net/

  25. JavaFX Script ... import javafx.ui.*; Frame { title: "Hello World JavaFX" width: 200 height: 50 content: Label { text: "Hello World" } visible: true } var win = new Frame(); win.title = "Hello World JavaFX"; win.width = 200; var label = new Label(); label.text = "Hello World"; win.content = label; win.visible = true;

  26. JavaFX Script ...

More Related