仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 965|回复: 19
打印 上一主题 下一主题

[学习教程] JAVA网页设计Velocity A template engine OR A Rule...

[复制链接]
若天明 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-18 11:49:05 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
学习JAVA的目的更多的是培养自身的工作能力,我觉得工作能力的一个核心就是:独立思考能力,因为只有独立思考后,才会有自己的见解


March2005
Discussion


Velocity:AtemplateengineORARuleengineORBoth?

MostofthedevelopersmustbefamiliarwithVelocityasagreatopensourcetemplateengineandIdon’tthinkIneedtosaymuchaboutitsusesandfeaturesasatemplateengine.Thispapercompilesitsfeaturesasaruleengine.

Ihavebeenworkingwithjavaforthepast6yearsandrecently,IgotanopportunitytodesignanddevelopanEntitlementApplication.

Anentitlementistheresultoftheexecutionofaformula,orrulethatspecifieswhatmustbeconsideredwhendecidingwhetheragivenuserhasrightstomanipulateoruseagivenresource(orobject).Thisrulemaybecomposedofoneormoreconditionsthatmightonlybeevaluatedwithapplicationcontextspecificdata.Inaddition,aruleevaluationmayresultinmorethansimpleyes/noanswersandcontainadditionalinformationthatwouldberequiredbyanapplicationtonowperformtherequestedaccesstotheresource.Thesearecalledobligations.ThereforeanEntitlementServicecanbeusedbothasaruleevaluatorandaprivilegedataservice.

InitssimplestformanEntitlementServiceperformsstandardauthorizationcalls.Forexample,canauserperformasimpleactionagainstanamedresource?Initsmorecomplicatedformanentitlementmaybearuleonhowanobjectsuchasafinancialtransactionmaybemanipulated.Inthisrulethespecificparametersofthetransactionmaybecomparedagainstsetlimitsorcurrentfinancialdata.Theruleinthiscasemaybearepresentationofbusinesslogic.

Therearefourtypesofentitlement:

Coarse-grainedentitlement-Thecontrolofaccesstobroadcategoriesofresources,forexample,anentireapplication,anentiresubsystem,oraccesstospecificwebpages.

Fine-grainedentitlement-Thegrantingorwithholdingofindividualresourceslikebuttons,links,menuchoicesonapageorscreen,orfunctionswithinaprogram.

Transactionalentitlement-Anentitlementthatchecksprivilegetomanipulatearesourcebyexaminingveryspecificparametersabouta‘transaction’uponthatresource.Thecharacteristicsoforrelationshipsbetweentheseparameterscouldbeexpressednumerically(<,>,=,…),usingdateandtimeinformation,orevenaspartofaformula(*,%,/,-,+).

Dynamicentitlement-Whereaparameterofa‘transaction’representsinformationthatmustbecalculatedorretrievedfromanexternalsource.Thisinformationmayberetrievedbyacalltoanapplicationspecificservice.

Soaccordingtotherequirements,thisapplicationhastohave:
Somelogictoreturnthestoreddata(Users,UserGroups,Resources,ResourceGroups,Permissionsetc)basedonsomefilters.Forexamplereturnmealltheuserswhohaveanaccessonthisresource.Logictocheckthepermission.PermissionsareBooleaninnatureanddon’trequireanycomplexlogictoprocess.Although,permissionareverysimpletheyarequietpowerfulforbuildinganentitlementapplicationandcatertomostofthecasesofCoarse-grainedandFine-grainedentitlements.ArulebasedenginetohandleTransactionalandDynamicentitlements.
Now,wewilldirectlyfocusontheusesofVelocityasaruleengineasthisarticleisnotaboutdevelopinganentitlementapplication.

So,insteadofdevelopingmyownruleengineIstartedlookingaroundtofindoutadecentruleenginethatcanfulfillmyrequirements.AndIbegantoexploreruleengineslike:
JEL(http://galaxy.fzu.cz/JEL),BeanShell(http://www.beanshell.org/home.html),EL(http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html)
andmanymore,especiallytheoneswithopensourcesbecausemymanagementdidnotwanttospendtoomuchmoneyonthisapplication.

WhatIwaslookingforwasanenginewiththefollowingfeatures:
Easeofuseindevelopment.Shouldreducemydevelopmenttime.Easyandflexibleintermsofconfiguration.Itshouldhaveveryeasyandfamiliarlanguagetowriterulesespeciallyforanon-technicaladmintomaintain.Easilyextendable.Clearseparationbetweenadmin(Ruleauthor)anddeveloper.Testedandreliable.Greatcommunitysupport.NobodyisperfectandeverybodyneedsHelp:)
ButIcouldn’tfindanythinggoodenoughoutthere.Suddenly,Velocitygotmyattention.IhavealreadyusedVelocitytogeneratemyGUI.However,thistime,Iwaslookingatitwithadifferentpointofview.Iwascompilingitsfeaturesintermsofaruleengineanditseemedtomeaconsiderablefitforthisnewframework.ThenitbecameaperfectfitwhenIrealizeditsusesoftoolboxconceptaswell.ThetoolboxconceptprovidesthepowertoruleanauthortoaccessanyEISorapplication(almostanything)atruntimeandwithacompletetransparencytotheauthor.

NowletsgooverareallifeexampleanduseVelocityasruleengine.Beforewegoahead,letsconfigureVelocity.

Velocitycanbeusedasaservletinawebapplicationorasautilityinastandaloneapplication.Inourcase,wewilluseitasastandaloneapplication.Now,asastandaloneapplication,youcanuseitintwoways.Oneissingletonanotherisseparateruntimeinstance.Iuseditassingleton.Followingisthecodesample:

publicclassRuleEngineVelocityImplimplementsRuleEngine{publicRuleEngineVelocityImpl{try{//InitializeVelocity.Velocity.init();}catch(Exceptione){//Dosomething.}}publicStringexecute(StringruleId,Mapparams){//getthevelocitytemplatefromsomestorage.Stringtemplate=getFromSomewhere(ruleId);//CreateaContextobject.VelocityContextcontext=newVelocityContext(params);//Getatemplateasstream.StringWriterwriter=newStringWriter();StringReaderreader=newStringReader(template);//askVelocitytoevaluateit.booleanresult=Velocity.evaluate(context,writer,ruleId,reader);StringstrResult=null;if(result){strResult=writer.getBuffer().toString();}returnstrResult;}publicstaticvoidmain(String[]args){//addthevariableandtheirvalueswhichisbeingreferredin//template/rule.Mapparams=newHashMap();params.put("Anykey",AnyObject);//InitializeRuleEngineandexecutetherule.RuleEngineengine=newRuleEngineVelocityImpl();Stringresult=engine.execute("MyRule",params);System.out.println("Result:"+result);}}

Now,wewillwritearuletocheckacreditlimitforsomeuser.AVTLtemplate/ruleforthismaylooklikethis:

#if($creditLimit>1000)Overlimit.Youcantcompletethistransaction.##ORjustaBooleanvaluelikefalse###else#set($creditLimit=1000-$creditLimit)Now,yourbalanceis${creditLimit}.##ORjustaBooleanvalueliketrue###end

Youcanstoretherulesinafileorinadatabaseorinanyanotherdatastorage.Inmycase,Istoredtheserules/templatesinaRDBMSandIprovidedanAdminGUItomaintainthem.Letsassumedatabasetable,‘Rule’withtwocolumns,RuleIdandTemplate.IinsertarulewithRuleId“Chk_Credit_Limit”.

Now,letsmodifythemainmethodof“RuleEngineVelocityImpl“class.

publicstaticvoidmain(String[]args){Mapparams=newHashMap();params.put("creditLimit",newInteger(200));//InitializeRuleEngineandexecutetherule.RuleEngineengine=newRuleEngineVelocityImpl();Stringresult=engine.execute("Chk_Credit_Limit",params);System.out.println("Result:"+result);}

Theoutputwillbe:

Now,yourbalanceis800.

Doesn’titsoundsveryfamiliarandeasy?Ithastobe.Itisvelocity,dude!!!

Now,letsseethepoweroftoolboxconcept.

Naturally,VelocityonlysupportsintegerbutVelocitytoolsprojectaddsthepowertoVelocitytodoanykindofMath,Dateprocessingandformattingwhichyouwillneedtousefortheruleengine.

Sinceatoolboxisextendableandit’sveryeasytowriteatool(almostanyclasswithpublicmethodcanbeusedastool)youhaveunlimitedopportunitiestowriteNnumbersoftoolscorrespondingtoyourapplication/requirementscontextandallwillbeavailabletoruleauthorforwritingthesmartrules.Forexample,letssayanairlinecompanyhascomeupwithabusinessruleforyear2005thatstates:

Ifbookingdateisonaspecialdaylistthengetthediscountedrate,otherwiseusethenormalfare.

Letsassumethisdiscountedrateandspecialdaylistisstoredinsomedatabaseandbotharebeingmaintainedbysomeotherapplication.Thisspecialrateisvalidonlyforyear2005anditmaychangeorcanbecompletelyeliminatedinyear2006.Insuchcaseitwillnotbewisetobuildtheapplicationtocatertotheabovebusinessrequirementsandchangeitlater.

Soletsaddressthisproblemwiththerules.Beforewewritearuleweneedtwovaluesavailableataruntime.Oneisaspecialdaylistandtheotheristhediscountrate.LetswriteaToolclass(com.RateHelper)similartowhatwehavealreadyinVelocitytools:Math,Dateetc.Thesignatureofthisclasswouldbeasfollows:

publicDoublegetRate();publicbooleanisInSpecialDayList(Stringday);

AnyclasswithpublicmethodcanbehavelikeatoolinVelocity.That’sthemagicofintrospection:)

AfterwritingthisclassletsadditasatoolinVelocityengine.Wealreadyhaveabeautycalled“XMLToolboxManager”toaddNnumberoftoolsinVelocityautomatically.Wejustneedtospecifyourtoolsinanxmlfilecalledtoolbox.xml.

<toolbox><tool><key>rateHelper</key><scope>application</scope><class>com.RateHelper</class></tool></toolbox

Now,letsmodifyourRuleEngineVelocityImplclasstoloadthistoolboxbyaddingthebelowlineintheconstructorafterinitializingVelocity.

XMLToolboxManagertoolboxManager=newXMLToolboxManager();toolboxManager.load(this.getClass().getClassLoader().getResourceAsStream("toolbox.xml"));toolboxContext=toolboxManager.getToolboxContext(null);

Andnowreplacethebelowlineinexecutemethod:

VelocityContextcontext=newVelocityContext(params);

withthethisline:

VelocityContextcontext=newVelocityContext(toolboxContext,params);

Thisiscontextchaining.Pleaserefertheapachedocumentationformoreinformationonit.

Okay,weareallset.Letswritethebusinessrule(usingourcustomtool)andstoreitinourdatabasewithRuleId“get_price”

#if($rateHelper.isInSpecialDayList($day))$rateHelper.getRate()#else2500##Regularprice###end

Now,letsmodifythemainmethodagaintoexecuteournewrule.

publicstaticvoidmain(String[]args){Mapparams=newHashMap();params.put("day","02/28/05");//InitializeRuleEngineandexecutetherule.RuleEngineengine=newRuleEngineVelocityImpl();Stringresult=engine.execute("get_price",params);System.out.println("Result:"+result);}

Theoutputwillbe(if02/28/05isnotinspecialdaylist):2500

Isn’titeasyandpowerful?

Inadditiontotoolbox,Iassociatedproperties(key-valuepair)toobjectslikeUser,UserGroup,Resource,ResourceGroupwhichImadeavailabletoruleauthor.Thisgivestheauthormoreflexibilitytowritesmartsrules.Forexample,thereisausergroupinacompanywheresomeoftheuserscanonly“buy”theproductandsomeofthemcanonly“sell”theproductandtherestofthemcandoboth.Wecanassociateapropertycalled“ActionDirection”witheveryuserofthegroupandthepossiblevaluesforthepropertywillbelike“BUY”,“SELL”and“BOTH”.Aruleauthorcanuseitfreelyinhisrulestodistinguishamongtheuseractions.

Velocitywasintenselywrittenasatemplateengineandit’soneofpioneersinthisareabutyoucanseethatitisalsoagreatRuleengine.Combinationofproperties,toolboxandparametersmakesitmorepowerfulandperfectlysuitableforthistask.Andmostimportantly,somebodyhasuseditsuccessfullyasruleengine.
Reference:
1)http://jakarta.apache.org/velocity/index.html
Thanksto:
-MarcandNormwhobroughtmeintothisproject.

-Margaretforherediting.:)

origionallink:Velocity:AtemplateengineORARuleengineORBoth?

j2EE和asp比较,其实也没什么比的,原因和我上面说那些比较差不了多少,也是稳定性,安全性,J2EE比asp高,速度上比不过asp,asp也是延续着它的拖拽控件的方法,提高速度。
透明 该用户已被删除
沙发
发表于 2015-1-20 07:00:11 | 只看该作者
不过,每次的执行编译后的字节码需要消耗一定的时间,这同时也在一定程度上降低了 Java 程序的运行效率。
活着的死人 该用户已被删除
板凳
发表于 2015-1-28 22:56:17 | 只看该作者
J2SE开发桌面应用软件比起 VC,VB,DEPHI这些传统开发语言来说,优势好象并不明显。J2ME对于初学者来说,好象又有点深奥,而且一般开发者很难有开发环境。
若相依 该用户已被删除
地板
发表于 2015-2-5 17:13:44 | 只看该作者
Java 不同于一般的编译执行计算机语言和解释执行计算机语言。它首先将源代码编译成二进制字节码(bytecode),然后依赖各种不同平台上的虚拟机来解释执行字节码。从而实现了“一次编译、到处执行”的跨平台特性。
只想知道 该用户已被删除
5#
发表于 2015-2-6 09:50:09 | 只看该作者
Java 不同于一般的编译执行计算机语言和解释执行计算机语言。它首先将源代码编译成二进制字节码(bytecode),然后依赖各种不同平台上的虚拟机来解释执行字节码。从而实现了“一次编译、到处执行”的跨平台特性。
若天明 该用户已被删除
6#
 楼主| 发表于 2015-2-15 22:13:40 | 只看该作者
Java是一个纯的面向对象的程序设计语言,它继承了 C++语言面向对象技术的核心。Java舍弃了C ++语言中容易引起错误的指针(以引用取代)、运算符重载(operator overloading)
小魔女 该用户已被删除
7#
发表于 2015-2-26 18:26:14 | 只看该作者
有时间再研究一下MVC结构(把Model-View-Control分离开的设计思想)
小妖女 该用户已被删除
8#
发表于 2015-3-1 23:45:01 | 只看该作者
让你能够真正掌握接口或抽象类的应用,从而在原来的Java语言基础上跃进一步,更重要的是,设计模式反复向你强调一个宗旨:要让你的程序尽可能的可重用。
飘灵儿 该用户已被删除
9#
发表于 2015-3-4 09:50:24 | 只看该作者
Java是一种计算机编程语言,拥有跨平台、面向对java
10#
发表于 2015-3-8 17:06:03 | 只看该作者
科学超级计算机、移动电话和互联网,同时拥有全球最大的开发者专业社群。
海妖 该用户已被删除
11#
发表于 2015-3-15 00:59:03 | 只看该作者
设计模式是高级程序员真正掌握面向对象核心思想的必修课。设计模式并不是一种具体"技术",它讲述的是思想,它不仅仅展示了接口或抽象类在实际案例中的灵活应用和智慧
山那边是海 该用户已被删除
12#
发表于 2015-3-16 14:19:07 | 只看该作者
是一种由美国SUN计算机公司(Sun Microsystems, Inc.)所研究而成的语言
柔情似水 该用户已被删除
13#
发表于 2015-3-17 09:11:31 | 只看该作者
自从Sun推出Java以来,就力图使之无所不包,所以Java发展到现在,按应用来分主要分为三大块:J2SE,J2ME和J2EE,这也就是Sun ONE(Open Net Environment)体系。J2SE就是Java2的标准版,主要用于桌面应用软件的编程;J2ME主要应用于嵌入是系统开发,如手机和PDA的编程;J2EE是Java2的企业版,主要用于分布式的网络程序的开发,如电子商务网站和ERP系统。
因胸联盟 该用户已被删除
14#
发表于 2015-3-20 01:53:07 | 只看该作者
所以现在应用最广泛又最好学的就是J2EE了。 J2EE又包括许多组件,如Jsp,Servlet,JavaBean,EJB,JDBC,JavaMail等。要学习起来可不是一两天的事。那么又该如何学习J2EE呢?当然Java语法得先看一看的,I/O包,Util包,Lang包你都熟悉了吗?然后再从JSP学起。
飘飘悠悠 该用户已被删除
15#
发表于 2015-3-24 09:18:55 | 只看该作者
还好,SUN提供了Javabean可以把你的JSP中的 Java代码封装起来,便于调用也便于重用。
冷月葬花魂 该用户已被删除
16#
发表于 2015-3-26 02:55:46 | 只看该作者
是一种使网页(Web Page)产生生动活泼画面的语言
蒙在股里 该用户已被删除
17#
发表于 2015-4-1 08:22:53 | 只看该作者
多重继承(以接口取代)等特性,增加了垃圾回收器功能用于回收不再被引用的对象所占据的内存空间,使得程序员不用再为内存管理而担忧。在 Java 1.5 版本中,Java 又引入了泛型编程(Generic Programming)、类型安全的枚举、不定长参数和自动装/拆箱等语言特性。
再现理想 该用户已被删除
18#
发表于 2015-4-3 00:57:24 | 只看该作者
多重继承(以接口取代)等特性,增加了垃圾回收器功能用于回收不再被引用的对象所占据的内存空间,使得程序员不用再为内存管理而担忧。在 Java 1.5 版本中,Java 又引入了泛型编程(Generic Programming)、类型安全的枚举、不定长参数和自动装/拆箱等语言特性。
愤怒的大鸟 该用户已被删除
19#
发表于 2015-4-15 17:13:15 | 只看该作者
你可以去承接一些项目做了,一开始可能有些困难,可是你有技术积累,又考虑周全,接下项目来可以迅速作完,相信大家以后都会来找你的,所以Money就哗啦啦的。。。。。。
再见西城 该用户已被删除
20#
发表于 2015-4-21 18:40:09 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-15 01:37

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表