• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            逛奔的蝸牛

            我不聰明,但我會(huì)很努力

               ::  :: 新隨筆 ::  ::  :: 管理 ::

            Drools on Windows (Part 2 of 22) - Installation

            1. 安裝JDK

            2. 安裝Eclipse

            3. 下載安裝Eclipse的Drools插件: Drools 5.0 Eclipse 3.4 Workbench

            4. 下載Drools的運(yùn)行時(shí)環(huán)境: Drools 5.0 Binaries

            5. 啟動(dòng)Eclipse, 先設(shè)置Drools的運(yùn)行時(shí)環(huán)境為Drools-5.0-bin/lib 目錄

            6. 創(chuàng)建Drools project: DroolsApp1, 全用默認(rèn)設(shè)置

            7. 把在Drools-5.0-bin下面的其他jar文件加到入工程DroolsApp1的Build Path里.

            8. 編譯運(yùn)行DroolsApp1, 如果成功, 會(huì)在操控臺(tái)輸出:

            Hello World

            Goodbye cruel world


            ====================================================================================

            下面是具體安裝信息:

            Setup of a Drools development environment is fairly straightforward.  (For a Java app.) For this exercise, I'm going to kick open Microsoft Virtual PC 2007, and start with a new instance of Windows XP Pro SP3. 

            First, install Java.  Go to the Get Java link, and install the latest version, which at the time of this writing is Version 6 Update 12.  Depending on your browser settings, you might have to download the file (jxpiinstall-6u12-fcs-bin-b04-windows-i586-17_jan_2009.exe) and run it locally.  Whatever.  The point is to step out and get Java on your machine.

            Second, install the Eclipse IDE for Java EE Developers.  It's 163Mb, and I must say a very nice and robust IDE.  It has several nifty features that I wish Visual Studio had. 

            Here's something of a surprise.  It's an xcopy deployment.  You download the file, unzip it, and copy it to where you want it to run.  I created a C:\Program Files\Eclipse directory, and placed it there.  I also create a Desktop shortcut and also pin the shortcut to the Start menu. 

            The first time you run Eclipse, it asks you to designate a workspace. The workspace is your projects folder.  Then you get the welcome page.  There is an Overview, What's New, Samples, Tutorials, and the Workbench.  The Workbench is, unsurprisingly, where you do the work.

            Next, time to get a rules engine.

            Drools is part of the jboss 'galaxy of applications'.  jboss is probably most famous for their Application Server, which I hear is quite popular in some development communities.  jboss is a division of Red Hat, and you can see a nice graphical overview of their many projects here.    But I don't need all that stuff, of course, I'm just interested in the free rules engine.  I should note that you can get enterprise-level support agreements from Red Hat for Drools.

            Navigate to the Drools download page, and you'll see a few versions of Drools there.  I'm going to download 5.0.0.M5, or Version 5 Milestone 5, and use that.  There are nine files available; I just download them all.  Broadband is awesome.

            From drools-5.0.0.M5-eclipse-all, take the four files from the plugins subdirectory, and copy them to the Eclipse plugins folder.  Mine is at C:\Program Files\Eclipse\plugins\.

            Next from drools-5.0.0.M5-eclipse-all, take the three subdirectories under features and copy them to the Eclipse features folder.  For me that's C:\Program Files\Eclipse\features\.

            Then restart Eclipse, and go to the Workbench.  Right-click in the Project Explorer, and select New... Project.  You'll get a wizard, with the first dialog being a listing of all the possible project types, and Drools should be listed, as below:

            Eclipse New Project Wizard

            Select the Drools Project type.  Click Next.  Type in a Project name; I used DroolsApp1.  Next.  Next.  Ah, here we are at the Drools Runtime dialog.

            There's No Drools Runtime Like My Drools Runtime.

            The Drools Runtime can be defined as: the set of jar files necessary to run Drools. Straightforward, right?  Eh, in a word, no.  There are numerous ways you can assemble this set of files, depending on how you intend to configure your production deployment and the specific set of functionality you intend to provide your users.  For example, if you are never going to allow your users to load in rules from Excel spreadsheets, then you don't need jxl-2.4.2. If you are only going to be using the DRL to define rules, and you won't be storing rules in Xml files, then you don't need xml-apis-1.0.b2.  Yeah, baby, that's the love in Javaland.  It's all up to you.  These dependencies are outlined in the README_DEPENDENCIES.txt file.

            What I recommend for this exercise is simple, however. 

            Go back to the files we downloaded from jboss.org.  We'll be using drools-5.0.0.M5-bin.zip.  Extract that, and place it somewhere on the file system.  I put it at C:\drools-5.0.0.M5-bin\.

            Take all the files in C:\drools-5.0.0.M5-bin\lib\*.* and copy them up to C:\drools-5.0.0.M5-bin\*.*.  That'll work for now.

            Back to the show...
            The first time you create a Drools project in Eclipse, it asks where the Drools runtime is located.  You'll need to provide that. 

            In the project wizard, click on the Configure Workspace Settings... link.  It will open the Eclipse preferences pane where you specify the location of the Drools runtime.  You can actually have a listing of multiple runtimes, and select different ones for different projects.  I just have the one runtime.  I name it Drools M5 Runtime and browse to C:\drools-5.0.0.M5-bin.  Check the box.  Finish out of the wizard.

            And voila.  You should have DroolsApp1 in your Eclipse Project Explorer. It should look like this:

             Eclipse Package Explorer

            Run it by hitting Ctrl+F11, or click the little green right arrow. If it asks, run it as a Java Application.  Or you could click Alt+Shift+X, then J.  Seriously. 

            You should see the output in the Console pane at the bottom of your IDE.  If it says "Hello World {CR}{LF} Goodbye cruel world" then congratulations. You are now a rules engine developer.  Immediately raise your rate by 9.35%.

            Next post will take a closer look at the elements of this sample app, and postulate how the overall enterprise might look.

            Link for future reference: Drools home page.

            From: http://theruntime.com/blogs/danastevens/archive/2009/02/21/drools-on-windows-part-2-of-22---installation.aspx
            posted on 2010-04-23 15:10 逛奔的蝸牛 閱讀(1629) 評(píng)論(0)  編輯 收藏 引用 所屬分類: Java
            亚洲AV日韩精品久久久久久| 国内精品久久久久久野外| 精品免费久久久久国产一区| 91久久精品电影| 狠狠色综合久久久久尤物| 久久伊人中文无码| 香蕉久久久久久狠狠色| 2021国产精品久久精品| 国产精品99久久久精品无码| 国产亚洲精品自在久久| 99久久夜色精品国产网站| 思思久久99热免费精品6| 性色欲网站人妻丰满中文久久不卡| 欧洲精品久久久av无码电影| 久久这里只精品国产99热 | 久久亚洲国产精品五月天婷| 香蕉久久夜色精品国产2020| 99re久久精品国产首页2020| 久久久青草青青国产亚洲免观 | 久久婷婷人人澡人人爽人人爱| 色综合久久无码中文字幕| 国产精品免费久久久久电影网| 久久久久久久综合狠狠综合| 久久777国产线看观看精品| 久久精品国产乱子伦| 久久亚洲欧洲国产综合| 成人精品一区二区久久久| 久久久无码精品亚洲日韩按摩 | 国产色综合久久无码有码| 久久国产福利免费| 久久香蕉一级毛片| 国产精品9999久久久久| 国产69精品久久久久APP下载| 品成人欧美大片久久国产欧美...| 亚洲va国产va天堂va久久| 亚洲伊人久久综合影院| 久久影院午夜理论片无码| 国产日韩欧美久久| 国产精品热久久无码av| 久久久91精品国产一区二区三区| 国产成人精品白浆久久69|