SlideShare a Scribd company logo
1 of 21
Download to read offline
JavaFX Dependency
Injection with
FxContainer

                    Presented by
                 Srikanth Shenoy
                    ObjectSource
  Learn FxContainer in 10 minutes
Introduction
   Who am I?
       A hands-on architect
       Experienced and very knowledgeable in Java and
        Java EE
       Authored a book on Struts
       Several articles on Java EE for leading journals
       Director of Enterprise Java Practice at
        ObjectSource
       Creator of FxObjects and FxContainer framework
Introduction
   What is FxContainer? (Currently 1.0)
       Open source IoC container written in JavaFX.
       Meant specifically for Dependency Injection in
        JavaFX applications
       Very much Spring-like
       Small footprint (< 75K)
       Sequence, Collection Support
       Mix Java and JavaFX wiring
   Learn FxContainer in 20 slides! (10 minutes)
IoC Container Landscape
   Spring
       Supports XML and Annotations based DI
       Supports Constructor & Setter Injection
   Guice
       Supports Annotations and API based DI
       Supports Constructor & Setter Injection
   PicoContainer and many more..
Why another IoC Container?
   Problems with existing IoC Containers (in the
    context of JavaFX)
       JavaFX does not support annotations 
           Hence Guice leaves only programmatic DI option
           Xml DI with Spring works, but minimal jars > 1 MB
       Constructor Injection not supported in JavaFX
       Setter Injection is unnatural for JavaFX style
           JavaFX variables are written as public or public-init
           Writing setXYZ() method for variables feels artificial
       Nobody supports Sequence (the first class
        JavaFX collection citizen)
Setter Injection
var finder = MovieFinder {
  movieDao: MovieDao { }
}

   Dependency Injection with any other IoC
    container needs a setter like this (Not Good)
public class MovieFinder {
  public-init movieDao:MovieDao;
  public function setMovieDao(dao:MovieDao) {
    this.movieDao = dao;
  }
}
Side effects of Setter Injection
   Init and Post-Init code that depends on
    public-init variables will not work
   Classic Example – CustomNode.create()
       Called automatically in every UI
       Called immediately after init and post init
       No time to call setter methods
       If create() depends on objects injected by setter
        injection, then it will fail !!
A Different Kind of Injection
 Constructor Injection is DURING memory
  allocation
 Setter Injection is AFTER memory allocation
  and object initialization
 JavaFX needs something in between the two

 We call it Init injection

 A DI based on Init Injection does not exist

 So we created it 
 FxContainer is the ONLY IoC container that
        provides Init Injection for JavaFX
FxContainer Core Concept
   Based on JavaFX Reflection and Init Injection
FXLocal.Context ctx = FXLocal.getContext();

//get the class
FXClassType clzType = ctx.findClass("org.fxobjects.MovieFinder");

FXObjectValue objValue = clzType.allocate(); //allocate memory

//get the variable-type
FXVarMember varMember = clzType.getVariable("movieDao");

//create the variable-value
FXValue varValue = ctx.mirrorOf(Some String or object);

//initialize the variable. Basis for FxContainer Init Injection

objValue.initVar(varMember, varValue);
objValue.initialize(); //Finally initialize the object
FxContainer Overview
   Uses Setter Injection for Java objects
   Uses Init Injection for JavaFX objects
   Can mix both Java and JavaFX objects
   Java objects can hold references to JavaFX
    objects via interfaces
   Very Spring Like in configuration
   Powerful, Lightweight and Easy to use
FxContainer: Simple
Dependency Injection
<fxcontainer>

<fxobject name="movieFinder"
  class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
  <property name="someVar" value="Some random value"/>
  <property name="javaHelper" ref="javaHelperObj"/>
  <property name="jfxHelper" ref="jfxHelperVarObj"/>
</fxobject>

<fxobject name="movieLister"
  class="org.fxobjects.samples.fxcontainer.MovieLister">
  <property name="finder" ref="movieFinder"/>
</fxobject>

</fxcontainer>
FxContainer: Import XML
   Good for organizing large XML into smaller
    logical chunks
<fxcontainer>

<import resource="/org/fxobjects/samples/abc.xml"/>

<fxobject name="movieFinder"
  class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
  <property name="someVar" value="Some random value"/>
  <property name="javaHelper" ref="javaHelperObj"/>
  <property name="jfxHelper" ref="jfxHelperVarObj"/>
</fxobject>

</fxcontainer>
FxContainer: Import Properties
   Good for Spring style ${ } substitutions
<fxcontainer>

<import resource="/org/fxobjects/samples/abc.properties"/>

<fxobject name="movieFinder"
  class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
  <property name="someVar" value=“${svr1Name} is ${svr1Status}"/>
  <property name="javaHelper" ref=“${helperObj}"/>
  <property name="jfxHelper" ref="jfxHelperVarObj"/>
</fxobject>

</fxcontainer>

   value and ref can be substituted
FxContainer: Wired Object
Attributes
   Wired Objects in FxContainer have the following defaults
    (can be overridden)
       Every wired object is singleton
       Every wired object is lazily initialized (i.e on demand)
       There is no order of initialization (Although load order can be
        specified for eagerly loaded objects)
       Init-method is called after all properties are injected
<fxcontainer>
<fxobject name="movieFinder"
   class="org.fxobjects.samples.fxcontainer.MovieFinderImpl“ lazy-
   init=“false” load-order=“1” init-method=“someMethod”>
..
 </fxobject>
</fxcontainer>
FxContainer: Sequences
<fxcontainer>
 <fxobject name="movieFinder"
   class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
   <property name="movieCodes">     Primitive Sequence
     <sequence>
       <entry value=“1" />
       <entry value="2" />
     </sequence>
   </property>
   <property name="movies">         Object Sequence
     <sequence>
       <entry ref="movie1"/>
       <entry ref="movie2"/>
     </sequence>
   </property>
  </fxobject>
</fxcontainer>
FxContainer: Lists and Sets
<fxcontainer>
 <fxobject name="movieFinder"
   class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
   <property name="movieList">              Object LIST
     <list> (or <set>)
       <entry ref="movie1"/>
       <entry ref="movie2"/>
     </list>
   </property>
   <property name="movieCodes">             Primitive LIST
     <list valueClass=“java.lang.Integer”>
       <entry value=“1" />
       <entry value="2" />
     </list>
   </property>
  </fxobject>
</fxcontainer>
FxObjects Lists and Sets
(Contd.)
   Lists and Sets have to be initialized in their
    parents with a new …..();
   valueClass attribute
       Optional in most cases
       Reason: One cannot tell from the xml value
        attributed if a list is Integer, String, BigDecimal
        etc.
       Needed for Java and JavaFX objects when
           value attribute is specified in xml AND
           List is not parameterized (always the case in JavaFX)
FxContainer: Maps
<fxcontainer>
 <fxobject name="movieFinder"
   class="org.fxobjects.samples.fxcontainer.MovieFinderImpl">
   <property name="movieMap">              Object MAP
     <map>
       <entry keyRef=“stage1” valueRef="movie1"/>
     </map>
   </property>
   <property name="movieCodes">             Primitive MAP
    <map keyClass=“java.lang.String”
   valueClass=“java.lang.Integer”>
       <entry key=“Terminator 1” value=“1" />
       <entry value=“Terminator 2" />
     </map>
   </property>
  </fxobject>
</fxcontainer>
keyClass and valueClass are needed for Maps in JavaFX with key
   and value specified. (since they cannot be parameterized) and
FxContainer: Startup
   Spring Like
var loader = ClasspathXmlContainerLoader {
  resourceLocation: "/org/fxobjects/samples/my.xml“
}
var container:FxContainer = loader.load();
var mvLister:MovieLister =
      container.getFxObject("movieLister") as MovieLister;

   FxContainer can be used the IoC container
    with FxObjects or any other JavaFX
    application independently
   Just include 2 jars – fxcontainer.jar and
    fxobjects-util.jar in classpath
FxObjects & FxContainer:
Roadmap
Links
   Project site – https://fxobjects/dev.java.net
   FxContainer is a subproject of FxObjects
   Not a single person open source project
       FxObjects and FxContainer developed and supported
        by ObjectSource (http://www.objectsource.com)
   Download, use, extend, redistribute, OEM
   Discussion Forums on project site
   Participation welcome
       Post ideas, questions, concerns, comments
       Contribute code

More Related Content

What's hot

Java basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini indiaJava basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini india
Sanjeev Tripathi
 
Fixing the Java Serialization Mess
Fixing the Java Serialization Mess Fixing the Java Serialization Mess
Fixing the Java Serialization Mess
Salesforce Engineering
 
Testing untestable code - phpday
Testing untestable code - phpdayTesting untestable code - phpday
Testing untestable code - phpday
Stephan Hochdörfer
 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
Dmitry Matyukhin
 

What's hot (20)

Getting started with Java 9 modules
Getting started with Java 9 modulesGetting started with Java 9 modules
Getting started with Java 9 modules
 
The Java memory model made easy
The Java memory model made easyThe Java memory model made easy
The Java memory model made easy
 
Java basic
Java basicJava basic
Java basic
 
Java 9
Java 9Java 9
Java 9
 
Invoke dynamics
Invoke dynamicsInvoke dynamics
Invoke dynamics
 
Java basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini indiaJava basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini india
 
Java and OpenJDK: disecting the ecosystem
Java and OpenJDK: disecting the ecosystemJava and OpenJDK: disecting the ecosystem
Java and OpenJDK: disecting the ecosystem
 
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
Java Class 6 | Java Class 6 |Threads in Java| Applets | Swing GUI | JDBC | Ac...
 
Java byte code in practice
Java byte code in practiceJava byte code in practice
Java byte code in practice
 
RelProxy, Easy Class Reload and Scripting with Java
RelProxy, Easy Class Reload and Scripting with JavaRelProxy, Easy Class Reload and Scripting with Java
RelProxy, Easy Class Reload and Scripting with Java
 
Javascript closures
Javascript closures Javascript closures
Javascript closures
 
Fixing the Java Serialization Mess
Fixing the Java Serialization Mess Fixing the Java Serialization Mess
Fixing the Java Serialization Mess
 
Synapseindia reviews.odp.
Synapseindia reviews.odp.Synapseindia reviews.odp.
Synapseindia reviews.odp.
 
Java Tut1
Java Tut1Java Tut1
Java Tut1
 
Javatut1
Javatut1 Javatut1
Javatut1
 
Testing untestable code - phpday
Testing untestable code - phpdayTesting untestable code - phpday
Testing untestable code - phpday
 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
 
Basic java for Android Developer
Basic java for Android DeveloperBasic java for Android Developer
Basic java for Android Developer
 
Core Java Certification
Core Java CertificationCore Java Certification
Core Java Certification
 
Java Annotation Processing: A Beginner Walkthrough
Java Annotation Processing: A Beginner WalkthroughJava Annotation Processing: A Beginner Walkthrough
Java Annotation Processing: A Beginner Walkthrough
 

Similar to JavaFX Dependency Injection with FxContainer

EclipseCon 2010 - JDT Fundamentals
EclipseCon 2010 - JDT FundamentalsEclipseCon 2010 - JDT Fundamentals
EclipseCon 2010 - JDT Fundamentals
deepakazad
 

Similar to JavaFX Dependency Injection with FxContainer (20)

Effective JavaFX architecture with FxObjects
Effective JavaFX architecture with FxObjectsEffective JavaFX architecture with FxObjects
Effective JavaFX architecture with FxObjects
 
DataFX - JavaOne 2013
DataFX - JavaOne 2013DataFX - JavaOne 2013
DataFX - JavaOne 2013
 
JavaFX for Business Application Developers
JavaFX for Business Application DevelopersJavaFX for Business Application Developers
JavaFX for Business Application Developers
 
Javaee6 Overview
Javaee6 OverviewJavaee6 Overview
Javaee6 Overview
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
EclipseCon 2010 - JDT Fundamentals
EclipseCon 2010 - JDT FundamentalsEclipseCon 2010 - JDT Fundamentals
EclipseCon 2010 - JDT Fundamentals
 
JDT Fundamentals 2010
JDT Fundamentals 2010JDT Fundamentals 2010
JDT Fundamentals 2010
 
Poco Es Mucho: WCF, EF, and Class Design
Poco Es Mucho: WCF, EF, and Class DesignPoco Es Mucho: WCF, EF, and Class Design
Poco Es Mucho: WCF, EF, and Class Design
 
DataFX 8 (JavaOne 2014)
DataFX 8 (JavaOne 2014)DataFX 8 (JavaOne 2014)
DataFX 8 (JavaOne 2014)
 
Spring
SpringSpring
Spring
 
Signal Framework
Signal FrameworkSignal Framework
Signal Framework
 
2. Design patterns. part #2
2. Design patterns. part #22. Design patterns. part #2
2. Design patterns. part #2
 
What's new in Java EE 6
What's new in Java EE 6What's new in Java EE 6
What's new in Java EE 6
 
Learn JS concepts by implementing jQuery
Learn JS concepts by implementing jQueryLearn JS concepts by implementing jQuery
Learn JS concepts by implementing jQuery
 
New Features Of JDK 7
New Features Of JDK 7New Features Of JDK 7
New Features Of JDK 7
 
Understanding Object Oriented Javascript - Coffee@DBG June
Understanding Object Oriented Javascript - Coffee@DBG JuneUnderstanding Object Oriented Javascript - Coffee@DBG June
Understanding Object Oriented Javascript - Coffee@DBG June
 
From Swing to JavaFX
From Swing to JavaFXFrom Swing to JavaFX
From Swing to JavaFX
 
Construire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradleConstruire une application JavaFX 8 avec gradle
Construire une application JavaFX 8 avec gradle
 
OpenWebBeans and DeltaSpike at ApacheCon
OpenWebBeans and DeltaSpike at ApacheConOpenWebBeans and DeltaSpike at ApacheCon
OpenWebBeans and DeltaSpike at ApacheCon
 
Clojure Fundamentals Course For Beginners
Clojure Fundamentals Course For Beginners Clojure Fundamentals Course For Beginners
Clojure Fundamentals Course For Beginners
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

JavaFX Dependency Injection with FxContainer

  • 1. JavaFX Dependency Injection with FxContainer Presented by Srikanth Shenoy ObjectSource Learn FxContainer in 10 minutes
  • 2. Introduction  Who am I?  A hands-on architect  Experienced and very knowledgeable in Java and Java EE  Authored a book on Struts  Several articles on Java EE for leading journals  Director of Enterprise Java Practice at ObjectSource  Creator of FxObjects and FxContainer framework
  • 3. Introduction  What is FxContainer? (Currently 1.0)  Open source IoC container written in JavaFX.  Meant specifically for Dependency Injection in JavaFX applications  Very much Spring-like  Small footprint (< 75K)  Sequence, Collection Support  Mix Java and JavaFX wiring  Learn FxContainer in 20 slides! (10 minutes)
  • 4. IoC Container Landscape  Spring  Supports XML and Annotations based DI  Supports Constructor & Setter Injection  Guice  Supports Annotations and API based DI  Supports Constructor & Setter Injection  PicoContainer and many more..
  • 5. Why another IoC Container?  Problems with existing IoC Containers (in the context of JavaFX)  JavaFX does not support annotations   Hence Guice leaves only programmatic DI option  Xml DI with Spring works, but minimal jars > 1 MB  Constructor Injection not supported in JavaFX  Setter Injection is unnatural for JavaFX style  JavaFX variables are written as public or public-init  Writing setXYZ() method for variables feels artificial  Nobody supports Sequence (the first class JavaFX collection citizen)
  • 6. Setter Injection var finder = MovieFinder { movieDao: MovieDao { } }  Dependency Injection with any other IoC container needs a setter like this (Not Good) public class MovieFinder { public-init movieDao:MovieDao; public function setMovieDao(dao:MovieDao) { this.movieDao = dao; } }
  • 7. Side effects of Setter Injection  Init and Post-Init code that depends on public-init variables will not work  Classic Example – CustomNode.create()  Called automatically in every UI  Called immediately after init and post init  No time to call setter methods  If create() depends on objects injected by setter injection, then it will fail !!
  • 8. A Different Kind of Injection  Constructor Injection is DURING memory allocation  Setter Injection is AFTER memory allocation and object initialization  JavaFX needs something in between the two  We call it Init injection  A DI based on Init Injection does not exist  So we created it  FxContainer is the ONLY IoC container that provides Init Injection for JavaFX
  • 9. FxContainer Core Concept  Based on JavaFX Reflection and Init Injection FXLocal.Context ctx = FXLocal.getContext(); //get the class FXClassType clzType = ctx.findClass("org.fxobjects.MovieFinder"); FXObjectValue objValue = clzType.allocate(); //allocate memory //get the variable-type FXVarMember varMember = clzType.getVariable("movieDao"); //create the variable-value FXValue varValue = ctx.mirrorOf(Some String or object); //initialize the variable. Basis for FxContainer Init Injection objValue.initVar(varMember, varValue); objValue.initialize(); //Finally initialize the object
  • 10. FxContainer Overview  Uses Setter Injection for Java objects  Uses Init Injection for JavaFX objects  Can mix both Java and JavaFX objects  Java objects can hold references to JavaFX objects via interfaces  Very Spring Like in configuration  Powerful, Lightweight and Easy to use
  • 11. FxContainer: Simple Dependency Injection <fxcontainer> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="someVar" value="Some random value"/> <property name="javaHelper" ref="javaHelperObj"/> <property name="jfxHelper" ref="jfxHelperVarObj"/> </fxobject> <fxobject name="movieLister" class="org.fxobjects.samples.fxcontainer.MovieLister"> <property name="finder" ref="movieFinder"/> </fxobject> </fxcontainer>
  • 12. FxContainer: Import XML  Good for organizing large XML into smaller logical chunks <fxcontainer> <import resource="/org/fxobjects/samples/abc.xml"/> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="someVar" value="Some random value"/> <property name="javaHelper" ref="javaHelperObj"/> <property name="jfxHelper" ref="jfxHelperVarObj"/> </fxobject> </fxcontainer>
  • 13. FxContainer: Import Properties  Good for Spring style ${ } substitutions <fxcontainer> <import resource="/org/fxobjects/samples/abc.properties"/> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="someVar" value=“${svr1Name} is ${svr1Status}"/> <property name="javaHelper" ref=“${helperObj}"/> <property name="jfxHelper" ref="jfxHelperVarObj"/> </fxobject> </fxcontainer>  value and ref can be substituted
  • 14. FxContainer: Wired Object Attributes  Wired Objects in FxContainer have the following defaults (can be overridden)  Every wired object is singleton  Every wired object is lazily initialized (i.e on demand)  There is no order of initialization (Although load order can be specified for eagerly loaded objects)  Init-method is called after all properties are injected <fxcontainer> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl“ lazy- init=“false” load-order=“1” init-method=“someMethod”> .. </fxobject> </fxcontainer>
  • 15. FxContainer: Sequences <fxcontainer> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="movieCodes">  Primitive Sequence <sequence> <entry value=“1" /> <entry value="2" /> </sequence> </property> <property name="movies">  Object Sequence <sequence> <entry ref="movie1"/> <entry ref="movie2"/> </sequence> </property> </fxobject> </fxcontainer>
  • 16. FxContainer: Lists and Sets <fxcontainer> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="movieList">  Object LIST <list> (or <set>) <entry ref="movie1"/> <entry ref="movie2"/> </list> </property> <property name="movieCodes">  Primitive LIST <list valueClass=“java.lang.Integer”> <entry value=“1" /> <entry value="2" /> </list> </property> </fxobject> </fxcontainer>
  • 17. FxObjects Lists and Sets (Contd.)  Lists and Sets have to be initialized in their parents with a new …..();  valueClass attribute  Optional in most cases  Reason: One cannot tell from the xml value attributed if a list is Integer, String, BigDecimal etc.  Needed for Java and JavaFX objects when  value attribute is specified in xml AND  List is not parameterized (always the case in JavaFX)
  • 18. FxContainer: Maps <fxcontainer> <fxobject name="movieFinder" class="org.fxobjects.samples.fxcontainer.MovieFinderImpl"> <property name="movieMap">  Object MAP <map> <entry keyRef=“stage1” valueRef="movie1"/> </map> </property> <property name="movieCodes">  Primitive MAP <map keyClass=“java.lang.String” valueClass=“java.lang.Integer”> <entry key=“Terminator 1” value=“1" /> <entry value=“Terminator 2" /> </map> </property> </fxobject> </fxcontainer> keyClass and valueClass are needed for Maps in JavaFX with key and value specified. (since they cannot be parameterized) and
  • 19. FxContainer: Startup  Spring Like var loader = ClasspathXmlContainerLoader { resourceLocation: "/org/fxobjects/samples/my.xml“ } var container:FxContainer = loader.load(); var mvLister:MovieLister = container.getFxObject("movieLister") as MovieLister;  FxContainer can be used the IoC container with FxObjects or any other JavaFX application independently  Just include 2 jars – fxcontainer.jar and fxobjects-util.jar in classpath
  • 21. Links  Project site – https://fxobjects/dev.java.net  FxContainer is a subproject of FxObjects  Not a single person open source project  FxObjects and FxContainer developed and supported by ObjectSource (http://www.objectsource.com)  Download, use, extend, redistribute, OEM  Discussion Forums on project site  Participation welcome  Post ideas, questions, concerns, comments  Contribute code