SlideShare une entreprise Scribd logo
1  sur  141
Télécharger pour lire hors ligne
That old Spring magic
has me in its SpEL
Craig Walls
About me




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
About me

• Java, Spring, and OSGi fanatic




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
About me

• Java, Spring, and OSGi fanatic


• Principal consultant with
  Improving Enterprises




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
About me

• Java, Spring, and OSGi fanatic


• Principal consultant with
  Improving Enterprises

• Author




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
About me

• Java, Spring, and OSGi fanatic


• Principal consultant with
  Improving Enterprises

• Author




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda




                                                                                          3
         SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda

• Introducing SpEL




                                                                                               3
              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda

• Introducing SpEL


• Using SpEL




                                                                                                3
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda

• Introducing SpEL


• Using SpEL


• SpEL Essentials




                                                                                                3
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda

• Introducing SpEL


• Using SpEL


• SpEL Essentials


• A few SpEL incantations




                                                                                                3
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Agenda

• Introducing SpEL


• Using SpEL


• SpEL Essentials


• A few SpEL incantations


• Q&A


                                                                                                3
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Download the examples




          Approximately the same code...

http://spring.habuma.com/examples/SpEL-examples.zip




                                                                                               4
              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Introducing SpEL




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL




                                                                                           6
          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0




                                                                                               6
              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
  – Originally conceived in Spring.NET




                                                                                                6
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
  – Originally conceived in Spring.NET

• The Spring Expression Language




                                                                                                6
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
  – Originally conceived in Spring.NET

• The Spring Expression Language
• Much like Unified EL, OGNL, JBoss EL, and others




                                                                                                6
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
   – Originally conceived in Spring.NET

• The Spring Expression Language
• Much like Unified EL, OGNL, JBoss EL, and others

• Will be used across entire Spring portfolio




                                                                                                 6
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
   – Originally conceived in Spring.NET

• The Spring Expression Language
• Much like Unified EL, OGNL, JBoss EL, and others

• Will be used across entire Spring portfolio

• Succinctly express complex concepts




                                                                                                 6
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
   – Originally conceived in Spring.NET

• The Spring Expression Language
• Much like Unified EL, OGNL, JBoss EL, and others

• Will be used across entire Spring portfolio

• Succinctly express complex concepts

• Can be used to wire bean properties



                                                                                                 6
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
What is SpEL

• New in Spring 3.0
   – Originally conceived in Spring.NET

• The Spring Expression Language
• Much like Unified EL, OGNL, JBoss EL, and others

• Will be used across entire Spring portfolio

• Succinctly express complex concepts

• Can be used to wire bean properties

• Can be used outside of Spring

                                                                                                 6
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Using SpEL




       SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Configuring beans with SpEL (XML)




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Configuring beans with SpEL (XML)




<bean id="appConfigurer"
  class="com.habuma.spel.tests.Witch">
 <property name="name"
   value="#{systemProperties['WITCH_NAME']}" />
</bean>




                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Configuring beans with SpEL (@Value)




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Configuring beans with SpEL (@Value)



@Component
public class Wizard {
  @Value("#{systemEnvironment['WIZARD_NAME']}")
  private String name;

    // ...
}




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Programming with SpEL




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Programming with SpEL


ExpressionParser parser = new SpelAntlrExpressionParser();

StandardEvaluationContext context =
  new StandardEvaluationContext(rootObject);

Expression ex =
  parser.parseExpression("witches.^[isWicked()]");

Witch wickedWitch = (Witch) ex.getValue(context);




                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Essential SpEL




         SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                         #{'abracadabra'}




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                          #{'abracadabra'}



        #{42}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                          #{'abracadabra'}



        #{42}                                                 #{3.1415926}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                          #{'abracadabra'}



        #{42}                                                 #{3.1415926}

                                        #{1e4}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                           #{'abracadabra'}



        #{42}                                                  #{3.1415926}

                                         #{1e4}

       #{true}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                           #{'abracadabra'}



        #{42}                                                  #{3.1415926}

                                         #{1e4}

       #{true}                                                                       #{false}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Literal expressions


                           #{'abracadabra'}



        #{42}                                                  #{3.1415926}

                                         #{1e4}

       #{true}                                                                       #{false}


                                         #{null}

             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

    #{systemProperties['WIZARD_NAME']}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

    #{systemProperties['WIZARD_NAME']}
          #{systemProperties.WIZARD_NAME}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

    #{systemProperties['WIZARD_NAME']}
          #{systemProperties.WIZARD_NAME}


   #{systemEnvironment['WIZARD_NAME']}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

    #{systemProperties['WIZARD_NAME']}
          #{systemProperties.WIZARD_NAME}


   #{systemEnvironment['WIZARD_NAME']}
          #{systemEnvironment.WIZARD_NAME}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

    #{systemProperties['WIZARD_NAME']}
          #{systemProperties.WIZARD_NAME}


   #{systemEnvironment['WIZARD_NAME']}
          #{systemEnvironment.WIZARD_NAME}


                    #{wizardBean.name}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables

     #{systemProperties['WIZARD_NAME']}
             #{systemProperties.WIZARD_NAME}


    #{systemEnvironment['WIZARD_NAME']}
            #{systemEnvironment.WIZARD_NAME}


                      #{wizardBean.name}

 Only available when using SpEL in Spring configuration

               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables



        #{request.getParameter('wizardId')}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables



        #{request.getParameter('wizardId')}



         #{session.getAttribute('wizard')}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ready-to-use variables



           #{request.getParameter('wizardId')}



             #{session.getAttribute('wizard')}



Can only be used to configure appropriately-scoped beans




                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Constructors




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Constructors



   #{new com.habuma.spel.tests.Wizard('Gandalf')}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Constructors



   #{new com.habuma.spel.tests.Wizard('Gandalf')}




            #{new String('hokus pokus')}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing object members




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing object members


                               #{elf.name}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing object members


                               #{elf.name}


                               #{elf.Name}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing object members


                               #{elf.name}


                               #{elf.Name}


                        #{elf.getName()}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing object members


                               #{elf.name}


                               #{elf.Name}


                        #{elf.getName()}


                 #{elf.name?.length()}



          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Mixing expressions and text




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Mixing expressions and text



                Embeds the wizard’s
                 name in some text
       The wizard’s name is #{wizard.name}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

               #{'Harry' + ' ' + 'Potter'}




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}


            #{77 - 25}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}


            #{77 - 25}                                  #{52 - -25}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}


            #{77 - 25}                                  #{52 - -25}


         #{6 * 7}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}


            #{77 - 25}                                  #{52 - -25}


         #{6 * 7}                                                     #{42 / 6}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Arithmetic operators

                #{'Harry' + ' ' + 'Potter'}


        #{25 + 52}                                          #{2.19 + 2.02}


            #{77 - 25}                                  #{52 - -25}


         #{6 * 7}                                                     #{42 / 6}

                                 #{44 % 7}


            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


     #{42 > 7}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


     #{42 > 7}                                                                           #{7 > 42}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


     #{42 > 7}                                                                           #{7 > 42}


                          #{10000 == 1e4}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


     #{42 > 7}                                                                           #{7 > 42}


                          #{10000 == 1e4}



                     #{‘Apple’ == ‘Apple’}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


      #{42 > 7}                                                                            #{7 > 42}


                            #{10000 == 1e4}



                       #{‘Apple’ == ‘Apple’}


   #{‘Apple’ < ‘Orange’}



               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Relational operators


      #{42 > 7}                                                                            #{7 > 42}


                            #{10000 == 1e4}



                       #{‘Apple’ == ‘Apple’}


   #{‘Apple’ < ‘Orange’}                                           #{‘Orange’ > ‘Apple’}



               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Logical operators




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Logical operators


    #{witch.isWicked() and witch.name == 'Elphaba'}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Logical operators


    #{witch.isWicked() and witch.name == 'Elphaba'}


    #{witch.isWicked() or witch.name == 'Tattypoo'}




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Logical operators


    #{witch.isWicked() and witch.name == 'Elphaba'}


    #{witch.isWicked() or witch.name == 'Tattypoo'}


                        #{!witch.isWicked()}




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ternary and Elvis operator




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ternary and Elvis operator



      #{wizard.isGood() ? 'Gandalf' : 'Saruman'}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Ternary and Elvis operator



      #{wizard.isGood() ? 'Gandalf' : 'Saruman'}




            #{wizard.name ?: 'unknown'}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The type operator : T()




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The type operator : T()


     #{T(String)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The type operator : T()


     #{T(String)}


                    #{T(Math)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The type operator : T()


     #{T(String)}


                    #{T(Math)}


                                                     #{T(int)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The type operator : T()


     #{T(String)}


                    #{T(Math)}


                                                     #{T(int)}


                                                                            #{T(java.util.Date)}



              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing class members




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing class members



              #{T(Math).floor(42.56)}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing class members



              #{T(Math).floor(42.56)}



                            #{T(Math).PI}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof

         #{‘Sabrina’ instanceof T(String)}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof

         #{‘Sabrina’ instanceof T(String)}

             #{123 instanceof T(Integer)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof

         #{‘Sabrina’ instanceof T(String)}

             #{123 instanceof T(Integer)}

             #{123L instanceof T(Long)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof

         #{‘Sabrina’ instanceof T(String)}

             #{123 instanceof T(Integer)}

             #{123L instanceof T(Long)}

             #{1.23 instanceof T(Double)}




              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
instanceof

         #{‘Sabrina’ instanceof T(String)}

             #{123 instanceof T(Integer)}

              #{123L instanceof T(Long)}

             #{1.23 instanceof T(Double)}

             #{true instanceof T(Boolean)}



              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Regular expressions




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Regular expressions


    #{phoneNumber matches 'd{3}-d{3}-d{4}'}




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Regular expressions


     #{phoneNumber matches 'd{3}-d{3}-d{4}'}



   #{websiteUrl matches
           'http://www.[a-zA-Z0-9]*.(com|edu|net)'}




                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Regular expressions


      #{phoneNumber matches 'd{3}-d{3}-d{4}'}



    #{websiteUrl matches
            'http://www.[a-zA-Z0-9]*.(com|edu|net)'}



 #{customerEmail matches
        '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,4}'}



                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Setting variables




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Setting variables




Assuming that the root object has a name property...




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Setting variables




Assuming that the root object has a name property...

                       name = 'Broomhilda'




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing collection members




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing collection members


                                       Arrays
                             #{wizards[0]}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Accessing collection members


                                       Arrays
                             #{wizards[0]}


                 Maps and Properties
         #{magicWords['abracadabra']}




          SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection selection




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection selection


      Select all witches that aren’t wicked
                 #{witches.?[!isWicked()]}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection selection


      Select all witches that aren’t wicked
                 #{witches.?[!isWicked()]}

          Select the first wicked witch
                  #{witches.^[isWicked()]}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection selection


      Select all witches that aren’t wicked
                 #{witches.?[!isWicked()]}

          Select the first wicked witch
                  #{witches.^[isWicked()]}

          Select the last wicked witch
                  #{witches.$[isWicked()]}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection projection




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Collection projection




         Get the names of all wizards

                      #{wizards.![name]}




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The #this variable




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
The #this variable



      Get the names of all wizards whose
       name is lexically ordered after ‘G’
         #{wizards.![name].?[#this > 'G']}




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Adding a custom function

      Only available with programmatic SpEL




                                                                                             31
            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Adding a custom function

         Only available with programmatic SpEL
context = new StandardEvaluationContext();
parser = new SpelAntlrExpressionParser();
context.registerFunction("inEnglish",
  EnglishNumberInator.class.getDeclaredMethod(
     "translate", new Class[] {int.class}));




                                                                                                31
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Adding a custom function

          Only available with programmatic SpEL
context = new StandardEvaluationContext();
parser = new SpelAntlrExpressionParser();
context.registerFunction("inEnglish",
  EnglishNumberInator.class.getDeclaredMethod(
     "translate", new Class[] {int.class}));


Expression ex = parser.parseExpression("#inEnglish(123)");
String englishNumber = ex.getValue(context);




                                                                                                 31
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Demo




   SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
A few SpEL incantations




    SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring in a system property
(with a default)




               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring in a system property
(with a default)




<bean class="Wizard">
 <property name="name"
           value=
     "#{systemProperties['WIZARD_NAME'] ?: 'Gandalf'}" />
</bean>




                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring bean references




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring bean references



@Value("#{pricingService}")
private PricingService pricingService;




                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring bean references



@Value("#{pricingService}")
private PricingService pricingService;
                                                 ...or...

<property name="pricingService"
  value="#{pricingService}" />




                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring bean references



@Value("#{pricingService}")
private PricingService pricingService;
                                                 ...or...

<property name="pricingService"
  value="#{pricingService}" />

                          Don’t do this!


                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Wiring bean references



@Value("#{pricingService}")
private PricingService pricingService;
                                                 ...or...

<property name="pricingService"
  value="#{pricingService}" />

                          Don’t do this!
                           However...

                 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective bean wiring




           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective bean wiring




@Value("#{systemProperties['PRICING'] == 'aggressive'"
       + "? aggressivePricing : regularPricing}")
private PricingService pricingService;




                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective collection wiring




            SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective collection wiring

public interface TaxRule {
  boolean appliesToState(String state);
  double calculateTax(double base);
}




                    SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective collection wiring

                                                                            <util:list id="taxRules">
public interface TaxRule {                                                   <ref id="revenueTax" />
  boolean appliesToState(String state);                                      <ref id="carpetTax" />
  double calculateTax(double base);                                          <ref id="existenceTax" />
}                                                                            <ref id="justBecauseTax" />
                                                                            </util:list>




                    SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Selective collection wiring

                                                                             <util:list id="taxRules">
public interface TaxRule {                                                    <ref id="revenueTax" />
  boolean appliesToState(String state);                                       <ref id="carpetTax" />
  double calculateTax(double base);                                           <ref id="existenceTax" />
}                                                                             <ref id="justBecauseTax" />
                                                                             </util:list>


<bean id="taxProcessor" class="TaxProcessor"
  scope="session">
 <aop:scoped-proxy />
 <property name="taxRules" value=
    "#{taxRules.?[appliesToState(session.getAttribute('user').state)]}" />
</bean>



                     SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts




                                                                                            38
           SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic




                                                                                               38
              SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic
• SpEL expressions are just Strings...no compile-
  time help to ensure type-safety, syntax, etc.




                                                                                                38
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic
• SpEL expressions are just Strings...no compile-
  time help to ensure type-safety, syntax, etc.
• Don’t abuse SpEL




                                                                                                38
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic
• SpEL expressions are just Strings...no compile-
  time help to ensure type-safety, syntax, etc.
• Don’t abuse SpEL
  – Remember Goethe’s Sorcerer’s Apprentice




                                                                                                38
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic
• SpEL expressions are just Strings...no compile-
  time help to ensure type-safety, syntax, etc.
• Don’t abuse SpEL
  – Remember Goethe’s Sorcerer’s Apprentice
  – A little bit of magic in the wrong hands can be
    dangerous




                                                                                                38
               SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Parting thoughts

• SpEL expressions are great for doing Spring
  configuration magic
• SpEL expressions are just Strings...no compile-
  time help to ensure type-safety, syntax, etc.
• Don’t abuse SpEL
   – Remember Goethe’s Sorcerer’s Apprentice
   – A little bit of magic in the wrong hands can be
     dangerous

• Write tests!!!


                                                                                                 38
                SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
Q&A
Thank you!
Don’t forget to turn in your evaluations!!!




             SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.

Contenu connexe

En vedette

Building RESTful applications using Spring MVC
Building RESTful applications using Spring MVCBuilding RESTful applications using Spring MVC
Building RESTful applications using Spring MVCIndicThreads
 
Spring Framework 4.0 to 4.1
Spring Framework 4.0 to 4.1Spring Framework 4.0 to 4.1
Spring Framework 4.0 to 4.1Sam Brannen
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!Jakub Kubrynski
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSam Brannen
 
Microservices with Spring Boot
Microservices with Spring BootMicroservices with Spring Boot
Microservices with Spring BootJoshua Long
 
RESTful Web Services with Spring MVC
RESTful Web Services with Spring MVCRESTful Web Services with Spring MVC
RESTful Web Services with Spring MVCdigitalsonic
 

En vedette (10)

Building RESTful applications using Spring MVC
Building RESTful applications using Spring MVCBuilding RESTful applications using Spring MVC
Building RESTful applications using Spring MVC
 
Spring Framework 4.0 to 4.1
Spring Framework 4.0 to 4.1Spring Framework 4.0 to 4.1
Spring Framework 4.0 to 4.1
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!
 
Spring Boot Tutorial
Spring Boot TutorialSpring Boot Tutorial
Spring Boot Tutorial
 
Spring Mvc Rest
Spring Mvc RestSpring Mvc Rest
Spring Mvc Rest
 
Spring Web MVC
Spring Web MVCSpring Web MVC
Spring Web MVC
 
Spring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. RESTSpring Web Services: SOAP vs. REST
Spring Web Services: SOAP vs. REST
 
Microservices with Spring Boot
Microservices with Spring BootMicroservices with Spring Boot
Microservices with Spring Boot
 
RESTful Web Services with Spring MVC
RESTful Web Services with Spring MVCRESTful Web Services with Spring MVC
RESTful Web Services with Spring MVC
 
Presentation Spring
Presentation SpringPresentation Spring
Presentation Spring
 

Dernier

Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
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 FresherRemote DBA Services
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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 WorkerThousandEyes
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
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...DianaGray10
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 

Dernier (20)

Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
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
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
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...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 

That old Spring magic has me in its SpEL

  • 1. That old Spring magic has me in its SpEL Craig Walls
  • 2. About me SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 3. About me • Java, Spring, and OSGi fanatic SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 4. About me • Java, Spring, and OSGi fanatic • Principal consultant with Improving Enterprises SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 5. About me • Java, Spring, and OSGi fanatic • Principal consultant with Improving Enterprises • Author SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 6. About me • Java, Spring, and OSGi fanatic • Principal consultant with Improving Enterprises • Author SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 7. Agenda 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 8. Agenda • Introducing SpEL 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 9. Agenda • Introducing SpEL • Using SpEL 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 10. Agenda • Introducing SpEL • Using SpEL • SpEL Essentials 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 11. Agenda • Introducing SpEL • Using SpEL • SpEL Essentials • A few SpEL incantations 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 12. Agenda • Introducing SpEL • Using SpEL • SpEL Essentials • A few SpEL incantations • Q&A 3 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 13. Download the examples Approximately the same code... http://spring.habuma.com/examples/SpEL-examples.zip 4 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 14. Introducing SpEL SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 15. What is SpEL 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 16. What is SpEL • New in Spring 3.0 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 17. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 18. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 19. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language • Much like Unified EL, OGNL, JBoss EL, and others 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 20. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language • Much like Unified EL, OGNL, JBoss EL, and others • Will be used across entire Spring portfolio 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 21. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language • Much like Unified EL, OGNL, JBoss EL, and others • Will be used across entire Spring portfolio • Succinctly express complex concepts 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 22. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language • Much like Unified EL, OGNL, JBoss EL, and others • Will be used across entire Spring portfolio • Succinctly express complex concepts • Can be used to wire bean properties 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 23. What is SpEL • New in Spring 3.0 – Originally conceived in Spring.NET • The Spring Expression Language • Much like Unified EL, OGNL, JBoss EL, and others • Will be used across entire Spring portfolio • Succinctly express complex concepts • Can be used to wire bean properties • Can be used outside of Spring 6 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 24. Using SpEL SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 25. Configuring beans with SpEL (XML) SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 26. Configuring beans with SpEL (XML) <bean id="appConfigurer" class="com.habuma.spel.tests.Witch"> <property name="name" value="#{systemProperties['WITCH_NAME']}" /> </bean> SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 27. Configuring beans with SpEL (@Value) SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 28. Configuring beans with SpEL (@Value) @Component public class Wizard { @Value("#{systemEnvironment['WIZARD_NAME']}") private String name; // ... } SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 29. Programming with SpEL SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 30. Programming with SpEL ExpressionParser parser = new SpelAntlrExpressionParser(); StandardEvaluationContext context = new StandardEvaluationContext(rootObject); Expression ex = parser.parseExpression("witches.^[isWicked()]"); Witch wickedWitch = (Witch) ex.getValue(context); SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 31. Essential SpEL SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 32. Literal expressions SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 33. Literal expressions #{'abracadabra'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 34. Literal expressions #{'abracadabra'} #{42} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 35. Literal expressions #{'abracadabra'} #{42} #{3.1415926} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 36. Literal expressions #{'abracadabra'} #{42} #{3.1415926} #{1e4} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 37. Literal expressions #{'abracadabra'} #{42} #{3.1415926} #{1e4} #{true} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 38. Literal expressions #{'abracadabra'} #{42} #{3.1415926} #{1e4} #{true} #{false} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 39. Literal expressions #{'abracadabra'} #{42} #{3.1415926} #{1e4} #{true} #{false} #{null} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 40. Ready-to-use variables SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 41. Ready-to-use variables #{systemProperties['WIZARD_NAME']} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 42. Ready-to-use variables #{systemProperties['WIZARD_NAME']} #{systemProperties.WIZARD_NAME} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 43. Ready-to-use variables #{systemProperties['WIZARD_NAME']} #{systemProperties.WIZARD_NAME} #{systemEnvironment['WIZARD_NAME']} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 44. Ready-to-use variables #{systemProperties['WIZARD_NAME']} #{systemProperties.WIZARD_NAME} #{systemEnvironment['WIZARD_NAME']} #{systemEnvironment.WIZARD_NAME} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 45. Ready-to-use variables #{systemProperties['WIZARD_NAME']} #{systemProperties.WIZARD_NAME} #{systemEnvironment['WIZARD_NAME']} #{systemEnvironment.WIZARD_NAME} #{wizardBean.name} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 46. Ready-to-use variables #{systemProperties['WIZARD_NAME']} #{systemProperties.WIZARD_NAME} #{systemEnvironment['WIZARD_NAME']} #{systemEnvironment.WIZARD_NAME} #{wizardBean.name} Only available when using SpEL in Spring configuration SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 47. Ready-to-use variables SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 48. Ready-to-use variables #{request.getParameter('wizardId')} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 49. Ready-to-use variables #{request.getParameter('wizardId')} #{session.getAttribute('wizard')} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 50. Ready-to-use variables #{request.getParameter('wizardId')} #{session.getAttribute('wizard')} Can only be used to configure appropriately-scoped beans SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 51. Constructors SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 52. Constructors #{new com.habuma.spel.tests.Wizard('Gandalf')} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 53. Constructors #{new com.habuma.spel.tests.Wizard('Gandalf')} #{new String('hokus pokus')} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 54. Accessing object members SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 55. Accessing object members #{elf.name} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 56. Accessing object members #{elf.name} #{elf.Name} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 57. Accessing object members #{elf.name} #{elf.Name} #{elf.getName()} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 58. Accessing object members #{elf.name} #{elf.Name} #{elf.getName()} #{elf.name?.length()} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 59. Mixing expressions and text SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 60. Mixing expressions and text Embeds the wizard’s name in some text The wizard’s name is #{wizard.name} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 61. Arithmetic operators SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 62. Arithmetic operators #{'Harry' + ' ' + 'Potter'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 63. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 64. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 65. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} #{77 - 25} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 66. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} #{77 - 25} #{52 - -25} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 67. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} #{77 - 25} #{52 - -25} #{6 * 7} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 68. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} #{77 - 25} #{52 - -25} #{6 * 7} #{42 / 6} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 69. Arithmetic operators #{'Harry' + ' ' + 'Potter'} #{25 + 52} #{2.19 + 2.02} #{77 - 25} #{52 - -25} #{6 * 7} #{42 / 6} #{44 % 7} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 70. Relational operators SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 71. Relational operators #{42 > 7} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 72. Relational operators #{42 > 7} #{7 > 42} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 73. Relational operators #{42 > 7} #{7 > 42} #{10000 == 1e4} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 74. Relational operators #{42 > 7} #{7 > 42} #{10000 == 1e4} #{‘Apple’ == ‘Apple’} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 75. Relational operators #{42 > 7} #{7 > 42} #{10000 == 1e4} #{‘Apple’ == ‘Apple’} #{‘Apple’ < ‘Orange’} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 76. Relational operators #{42 > 7} #{7 > 42} #{10000 == 1e4} #{‘Apple’ == ‘Apple’} #{‘Apple’ < ‘Orange’} #{‘Orange’ > ‘Apple’} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 77. Logical operators SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 78. Logical operators #{witch.isWicked() and witch.name == 'Elphaba'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 79. Logical operators #{witch.isWicked() and witch.name == 'Elphaba'} #{witch.isWicked() or witch.name == 'Tattypoo'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 80. Logical operators #{witch.isWicked() and witch.name == 'Elphaba'} #{witch.isWicked() or witch.name == 'Tattypoo'} #{!witch.isWicked()} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 81. Ternary and Elvis operator SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 82. Ternary and Elvis operator #{wizard.isGood() ? 'Gandalf' : 'Saruman'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 83. Ternary and Elvis operator #{wizard.isGood() ? 'Gandalf' : 'Saruman'} #{wizard.name ?: 'unknown'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 84. The type operator : T() SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 85. The type operator : T() #{T(String)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 86. The type operator : T() #{T(String)} #{T(Math)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 87. The type operator : T() #{T(String)} #{T(Math)} #{T(int)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 88. The type operator : T() #{T(String)} #{T(Math)} #{T(int)} #{T(java.util.Date)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 89. Accessing class members SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 90. Accessing class members #{T(Math).floor(42.56)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 91. Accessing class members #{T(Math).floor(42.56)} #{T(Math).PI} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 92. instanceof SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 93. instanceof #{‘Sabrina’ instanceof T(String)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 94. instanceof #{‘Sabrina’ instanceof T(String)} #{123 instanceof T(Integer)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 95. instanceof #{‘Sabrina’ instanceof T(String)} #{123 instanceof T(Integer)} #{123L instanceof T(Long)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 96. instanceof #{‘Sabrina’ instanceof T(String)} #{123 instanceof T(Integer)} #{123L instanceof T(Long)} #{1.23 instanceof T(Double)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 97. instanceof #{‘Sabrina’ instanceof T(String)} #{123 instanceof T(Integer)} #{123L instanceof T(Long)} #{1.23 instanceof T(Double)} #{true instanceof T(Boolean)} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 98. Regular expressions SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 99. Regular expressions #{phoneNumber matches 'd{3}-d{3}-d{4}'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 100. Regular expressions #{phoneNumber matches 'd{3}-d{3}-d{4}'} #{websiteUrl matches 'http://www.[a-zA-Z0-9]*.(com|edu|net)'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 101. Regular expressions #{phoneNumber matches 'd{3}-d{3}-d{4}'} #{websiteUrl matches 'http://www.[a-zA-Z0-9]*.(com|edu|net)'} #{customerEmail matches '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,4}'} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 102. Setting variables SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 103. Setting variables Assuming that the root object has a name property... SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 104. Setting variables Assuming that the root object has a name property... name = 'Broomhilda' SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 105. Accessing collection members SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 106. Accessing collection members Arrays #{wizards[0]} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 107. Accessing collection members Arrays #{wizards[0]} Maps and Properties #{magicWords['abracadabra']} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 108. Collection selection SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 109. Collection selection Select all witches that aren’t wicked #{witches.?[!isWicked()]} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 110. Collection selection Select all witches that aren’t wicked #{witches.?[!isWicked()]} Select the first wicked witch #{witches.^[isWicked()]} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 111. Collection selection Select all witches that aren’t wicked #{witches.?[!isWicked()]} Select the first wicked witch #{witches.^[isWicked()]} Select the last wicked witch #{witches.$[isWicked()]} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 112. Collection projection SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 113. Collection projection Get the names of all wizards #{wizards.![name]} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 114. The #this variable SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 115. The #this variable Get the names of all wizards whose name is lexically ordered after ‘G’ #{wizards.![name].?[#this > 'G']} SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 116. Adding a custom function Only available with programmatic SpEL 31 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 117. Adding a custom function Only available with programmatic SpEL context = new StandardEvaluationContext(); parser = new SpelAntlrExpressionParser(); context.registerFunction("inEnglish", EnglishNumberInator.class.getDeclaredMethod( "translate", new Class[] {int.class})); 31 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 118. Adding a custom function Only available with programmatic SpEL context = new StandardEvaluationContext(); parser = new SpelAntlrExpressionParser(); context.registerFunction("inEnglish", EnglishNumberInator.class.getDeclaredMethod( "translate", new Class[] {int.class})); Expression ex = parser.parseExpression("#inEnglish(123)"); String englishNumber = ex.getValue(context); 31 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 119. Demo SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 120. A few SpEL incantations SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 121. Wiring in a system property (with a default) SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 122. Wiring in a system property (with a default) <bean class="Wizard"> <property name="name" value= "#{systemProperties['WIZARD_NAME'] ?: 'Gandalf'}" /> </bean> SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 123. Wiring bean references SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 124. Wiring bean references @Value("#{pricingService}") private PricingService pricingService; SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 125. Wiring bean references @Value("#{pricingService}") private PricingService pricingService; ...or... <property name="pricingService" value="#{pricingService}" /> SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 126. Wiring bean references @Value("#{pricingService}") private PricingService pricingService; ...or... <property name="pricingService" value="#{pricingService}" /> Don’t do this! SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 127. Wiring bean references @Value("#{pricingService}") private PricingService pricingService; ...or... <property name="pricingService" value="#{pricingService}" /> Don’t do this! However... SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 128. Selective bean wiring SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 129. Selective bean wiring @Value("#{systemProperties['PRICING'] == 'aggressive'" + "? aggressivePricing : regularPricing}") private PricingService pricingService; SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 130. Selective collection wiring SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 131. Selective collection wiring public interface TaxRule { boolean appliesToState(String state); double calculateTax(double base); } SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 132. Selective collection wiring <util:list id="taxRules"> public interface TaxRule { <ref id="revenueTax" /> boolean appliesToState(String state); <ref id="carpetTax" /> double calculateTax(double base); <ref id="existenceTax" /> } <ref id="justBecauseTax" /> </util:list> SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 133. Selective collection wiring <util:list id="taxRules"> public interface TaxRule { <ref id="revenueTax" /> boolean appliesToState(String state); <ref id="carpetTax" /> double calculateTax(double base); <ref id="existenceTax" /> } <ref id="justBecauseTax" /> </util:list> <bean id="taxProcessor" class="TaxProcessor" scope="session"> <aop:scoped-proxy /> <property name="taxRules" value= "#{taxRules.?[appliesToState(session.getAttribute('user').state)]}" /> </bean> SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 134. Parting thoughts 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 135. Parting thoughts • SpEL expressions are great for doing Spring configuration magic 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 136. Parting thoughts • SpEL expressions are great for doing Spring configuration magic • SpEL expressions are just Strings...no compile- time help to ensure type-safety, syntax, etc. 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 137. Parting thoughts • SpEL expressions are great for doing Spring configuration magic • SpEL expressions are just Strings...no compile- time help to ensure type-safety, syntax, etc. • Don’t abuse SpEL 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 138. Parting thoughts • SpEL expressions are great for doing Spring configuration magic • SpEL expressions are just Strings...no compile- time help to ensure type-safety, syntax, etc. • Don’t abuse SpEL – Remember Goethe’s Sorcerer’s Apprentice 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 139. Parting thoughts • SpEL expressions are great for doing Spring configuration magic • SpEL expressions are just Strings...no compile- time help to ensure type-safety, syntax, etc. • Don’t abuse SpEL – Remember Goethe’s Sorcerer’s Apprentice – A little bit of magic in the wrong hands can be dangerous 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 140. Parting thoughts • SpEL expressions are great for doing Spring configuration magic • SpEL expressions are just Strings...no compile- time help to ensure type-safety, syntax, etc. • Don’t abuse SpEL – Remember Goethe’s Sorcerer’s Apprentice – A little bit of magic in the wrong hands can be dangerous • Write tests!!! 38 SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.
  • 141. Q&A Thank you! Don’t forget to turn in your evaluations!!! SpringOne 2GX 2009. All rights reserved. Do not distribute without permission.