嗔秤戻幣�哉膵�云利匈嬉蝕湊蛸賜�塋床四衲���萩晦編報炎嘔囚^泡仟 ̄云利匈�《超噌�殻窟�嵌虜隆輓麈觚翹瀘卉韮�仍仍�。� 烏御危列
浪慕利 卦指云慕朕村 厘議慕尺 厘議慕禰 TXT畠云和墮 序秘慕杏 紗秘慕禰

VB2008貫秘壇欺娼宥(PDF鯉塀哂猟井)-及121嫗

梓囚徒貧圭�鮗� ○ 賜 ★ 辛酔堀貧和鍬匈��梓囚徒貧議 Enter 囚辛指欺云慕朕村匈��梓囚徒貧圭�鮗� ● 辛指欺云匈競何��
!!!!隆堋響頼��紗秘慕禰厮宴和肝写偬堋響��




of type IDefinition。 

     Is it correct to assume that the dynamic loading of a type can fulfill the contract of DoIt�┌��拭 �

Can you assume that the type even supports IDefinition�拭�

     What convention over configuration attempts to do is create pockets of self´contained  

functionality that can take care of themselves。 That self´contained functionality may require  

configuration file settings�察�and it may require other assemblies。 But what it does not require is  

a directive that includes source code that explicitly states what to do when。  

     Consider a workplace scenario。 Instead of having a manager tell the workers what to do at  

every step�察�a certain amount of peer´to´peer intelligence and self´reliance are assumed。 The  

self´reliance is both good and bad。 It is good in that there are fewer moving parts�察�but bad in  

that the peers might be doing something that they should not。 

     The following code shows an example of convention。 



Interface Imand  

    Sub Run�┌� 

End Interface 

。 。 。 

ConfigurationLoader。Instance。Load�┌� 

Dim definition As IDefinition = _ 

  ConfigurationLoader。Instance。Instantiate��Of Imand���─�Impl1;�� 

definition。Run�┌� 


´´´´´´´´´´´´´´´´´´´´´´Page 360´´´´´´´´´´´´´´´´´´´´´´´

338       CH AP T E R   1 2   *    L E A R N I N G   A B OU T   A PP L I CA TI O N   CO N F I G U R AT IO N   AN D   D Y N A M I C  L O AD I N G 



                The code runs some other code via the Run�┌� method and does not have any return values  

           or parameters。 The code doing the executing is hoping that everything will work out�察�because  

          it cannot check a return value。 And that is the gist of convention over configuration!the  

           calling code hopes everything will work out。  

                For the most part�察�convention works out quite nicely because it is easier to extend and  

          maintain a convention´based system�察�since there are fewer moving parts。 For any plex  

           system�察�the fewer moving parts the better。 The downside is that the administrator needs to  

          understand what the moving parts are。  

                People have a tendency to make everything configurable and leave nothing to the puter  

          program。 Whether or not something works depends on how the configuration is written。 In  

           a convention architecture�察�the called functionality will make decisions about what it deems  

           appropriate。 

                Here is an example of configuration�此�



               _ 

              Public Property TypeName�┌� As String 

                  Get  

                      Return CStr��MyBase。Item��_propTypeName���� 

                  End Get 

              End Property 



                The code should look familiar�察�as it reassembles the configuration code you saw earlier。  

          But this code is overconstrained and requires too many moving parts。 It would be great to  

           simplify it to the following code ��which does not pile because you cannot change the code  

          base of the  library��。 



               _ 

              Public ReadOnly Property TypeName�┌� As String 

                  Get  

                      Return CStr��MyBase。Item��_propTypeName���� 

                  End Get 

              End Property 



                The difference between the two code pieces is the missing parameters in the  attributes。  

          The parameters are not necessary because they are already defined by the data member  

          _propTypeName�察�and you can use the identifier of the property as that extra piece of informa

          tion。 So the property identifier TypeName could be used as an identifier for an XML attribute。 

                Some may argue that by having a cross´reference between the property identifier and  

           configuration identifier�察�you are creating a hard´coded dependency。 That¨s a valid argument。  

          But is the code¨s assumption a mon´sense assumption�拭�Is it an extreme proposition to say  

          that your property identifier is the name of your XML attribute�拭�The answer is that it is not an  

           extreme proposition�察�and the Ruby on Rails creators said the same when creating their own  

           architecture。 

                Let¨s now consider the ability to indicate whether a configuration item is required。 By  

           specifying whether or not an attribute is required�察�you can avoid an exception at a later point。  

          However�察�think about the bigger context。 The  IsRequired attribute is processed when the  

          program is started。 The validity of the configuration file is not processed at pile time�察�and  

          thus the only thing that IsRequired does is generate an exception earlier。 Maybe you want to  

           avoid any runtime errors that could bring down a program during processing。 I don¨t think it is  


´´´´´´´´´´´´´´´´´´´´´´Page 361´´´´´´´´´´´´´´´´´´´´´´´

          CH AP T E R   1 2   *    L E AR N IN G   AB O U T   AP P L I CAT I ON   CO N F IG U R AT IO N   A N D   D Y N A M IC   L O AD IN G 339 



a big advantage�察�but I am sure others will think it is�察�and thus using the IsRequired property  

is a judgment call。  



*Note  The aim of convention´based architecture is to make as many assumptions as possible�察�without  

sacrificing the bigger goal of the application。 A good convention´based architecture is not easy to create  

because it requires pletely understanding the needs of the developers and those who run the application。  

My personal rule of thumb is to solve the problem first�察�and then decide what should be configured and what  

should be a convention。 



Dynamically Loading Base Class or  

Interface Types 



This chapter demonstrated two categories of code that were dynamically loaded。 The first cate

gory was a type that implemented an interface ��Implementation and IDefinition��。 The second  

type was a class that subclassed another class �─�LoaderSection�察�ConfigurationSection��。 Each  

approach has its advantages and disadvantages�察�but there is a single rule that you can use。 

     Whether to use an interface or class depends on how much responsibility you want to  

delegate to the implementation。 In the configuration processing example�察�the  infrastructure  

specifically indicated that the only responsibility of the dynamically loaded class is to indicate  

which identifiers should be processed。 How the value of the identifiers are extracted and converted  

into  types is the responsibility of the base class。 

     When you instantiate a type and use an interface�察�you are delegating plete control to  

the dynamically instantiated type。 The calling code is explicitly saying�察 �Here is your contract。  

How you deal with it is your responsibility。 Just make sure to implement the contract properly。 ̄  

By delegating all the responsibility�察�you are�察�in a sense�察�asking for trouble�察�because developers  

might implement a contract incorrectly。 



The Important Stuff to Remember 



In this chapter�察�you learned about configuring an application and dynamically loading code  

that is executed。 The main items to remember are as follows�此�



     o  A  application configuration file works only because there is code in the application  

        that uses the specified items in the configuration file。  



     o  Applications have  application configuration files where the name of the file is the  

        name of the executing application appended with a  。config。 



     o  A  application configuration file is a specially formatted XML file。 



     o  A  application configuration file applies to a specific assembly loaded by the  

        application。 



     o  The default scenario for a  application configuration file is to store the settings as  

        key/value pairs in the  section。 


´´´´´´´´´´´´´´´´´´´´´´Pag
卦指朕村 貧匯匈 和匯匈 指欺競何 壘��0�� 家��0��
隆堋響頼��紗秘慕禰厮宴和肝写偬堋響��
梁椣戻幣�� 梁心弌傍議揖扮窟燕得胎��傍竃徭失議心隈才凪万弌誌育断蛍�輌臆惨軼僑〃�燕慕得珊辛參資誼持蛍才将刮襲潜��範寔亟圻幹慕得 瓜寡追葎娼得辛參資誼寄楚署衛、持蛍才将刮襲潜填��