Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Java Books Media Programming Book Reviews IT Technology

Jess in Action 120

Simon P. Chappell and Eric Kaun contributed reviews of Jess in Action, Ernest Friedman-Hill's introduction to Jess, a pure Java rule-based system developed at Sandia National Laboratories. Kaun writes "Jess in Action presents the Jess rule-based framework, and explores it through four meaty and well-chosen examples: a console tax forms advisor, a console PC repair assistant, a Swing HVAC controller, and a servlet-based purchasing agent. The examples vary greatly in their designs and styles of interaction between Jess and Java, and expose patterns in a concrete context. It's especially nice the way each example builds on the functionality of the one before, such as a text-based question/interview module that is extended into a Swing GUI." Chappell points out that the book's author is also Jess' creator, so he speaks from authority. Read on for both reviews.
Jess in Action
author Ernest Friedman-Hill
pages 480
publisher Manning Publications
rating 9
reviewer Simon P. Chappell, Eric Kaun
ISBN 1930110898
summary Introduces rules and declarative programming style using JESS.

Eric Kaun's review, continued

Jess in Action starts with an introduction to rule-based systems, goes through the basics of the Jess language, and then dives into the examples; the appendices include API references to both Jess functions and Jess's Java APIs, and numerous links and references are scattered throughout the book. If I have any complaint about the organization, it's that the book could have been even more example-driven, abandoning (or shortening) the chapter on syntax and basic functions and introducing them only when used in an example; the rest could have been left to the appendix of Jess functions.

The book is interesting and readable, but dense with concepts, so it contains only 388 pages of actual text, and 50 pages of appendices will take some (well-spent) time to get through. A second skimming impressed me anew with the richness of the material, and the productive way in which it's presented, so I recommend reading the book once to get the overall feel, and then going through it again with the working Jess command shell, editor, and command line in front of you. Or an IDE if you must. :-)

Jess itself consists of a rule language, a runtime engine which supports forward and limited backward-chaining, and APIs for integration with Java; there are many add-on tools for Jess, referenced throughout the book. As with most rules engines, rules are specified as declarative patterns, not procedural code.

Jess in Action is well worth your time and attention, at the least for its exploration of rules, and at most for presenting a strong, flexible platform to tackle what is probably one of the uglier parts of your development process: the sequencing and parameterization of business decisions. Although the list of Cons below is longer, they're just nit-picking; this is an excellent, entertaining, and productive read that will likely expand your programming horizons considerably.

Pros
  • Clearly, concisely, and entertainingly written for Java programmers of any background
  • A strong introduction to two important topics: rules and declarative programming style
  • Well-chosen and developed working examples, each with a different design style
  • The description of the author's unit test framework for rules in Appendix C is a nice touch
Cons
  • Early discussion of Jess syntax focuses too much on Java-like procedural style
  • More of a tutorial - not long enough to be a good reference (though that would probably require a detailed Jess Patterns book)
  • Discussions of development methodology and knowledge engineering are unnecessary, as they're covered better elsewhere and a short summary adds little to the book
  • There's no single list of rule and Jess-related links; references to tools and discussions are scattered throughout the book
  • There are no general references to rules and rule-based systems for theory and background


Simon P. Chappell's review

While part one of the book has two slim chapters to introduce rule-based systems to the casual reader, the rest of the book is a no-messing user guide, reference manual and tutorial on using Jess. If you want to learn about rule-based systems, this should not be your first book. If you know of rule-based systems and have decided to use Jess, then run, don't walk to the bookstore and purchase a copy of this book.

I liked the solid, yet gentle, progression through part two, where the basics of using Jess are explained. The explanations were clear and each concept was introduced in a sequence that built upon the previous concepts and information. For example, I had thought that rules were all you had to worry about in rules-based systems, but it turns out that because rules operate on facts, designing the representation of those facts is a pre-condition of designing rules. (Right, I know you knew that, but it was new to me! :-)

Parts three through six are complete case-studies of the application of Jess in increasingly complex applications. The examples are well-explained and the rationale for each step is discussed in sufficient detail to educate but not bore.

Part seven is a self-described 'grab bag' of stuff that didn't fit in any of the other parts of the book. This section spends some time looking at using XML with JESS, including markup languages for rules, and interfacing with Jess from EJBs and Application Servers.

Lastly, there's the fact that the author of the book is also the author of the software in question. Dr. Friedman-Hill obviously knows Jess better than anyone else in the world and this shows through in the way that he not only explains how to achieve activities in and with Jess, but he also takes time, here and there, to explain some of the design decisions and trade-offs in its creation.


You can purchase Jess in Action from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the (recently updated) book review guidelines, then visit the submission page.

This discussion has been archived. No new comments can be posted.

Jess in Action

Comments Filter:
  • Jess (Score:2, Interesting)

    by dolo666 ( 195584 ) * on Monday November 03, 2003 @12:48PM (#7378210) Journal
    "If I have any complaint about the organization, it's that the book could have been even more example-driven, abandoning (or shortening) the chapter on syntax and basic functions and introducing them only when used in an example; the rest could have been left to the appendix of Jess functions."

    To me this says that O'Reilly's methods for writing programming books is favoured to other styles. Personally, I love how O'Relly's PHP Cookbook does just what this reviewer is looking for. You get a problem, a solution and examples to go with it. The zen of O'Reilly how-to books.

    I'm not a Java programmer, but I might have a look at Jess. To me, Java is fairly redundant. I don't like it very much because it's not thin. I'm a bare-bones kinda programmer. Cut, cut, cut! :)

    Using Java in college, you had to load all sorts of extra libs you might not use, which seemed wasteful to me. Don't get me started on web applets, which is what they taught at school. How to turn someone off Java? Applets!

    Jess seems, at first glance, to be equally as redundant. Perhaps some of you could delve into the benefits of Jess, on my account? :)
    • Re:Jess (Score:2, Insightful)

      by sketerpot ( 454020 ) <sketerpotNO@SPAMgmail.com> on Monday November 03, 2003 @01:11PM (#7378391)
      What turned me off Java was not the fact that it had large libraries, but the way the libraries seemed bolted on. I realize that having clear separation between the libraries and the language syntax is a good idea technically, but programming languages are for people [paulgraham.com]. System.out.println() is perfectly understandable, but a convenience function would be nice---or even a "print" statement.

      As libraries get big (as they certainly have in Java), it gets harder to find what you're looking for in them. A big problem in language design is making big libraries convenient and intuitive. Java looks like it hasn't tried all that hard.

      Jess looks like a layer of abstraction, and abstraction is generally a Good Thing. For example, HTML templating systems are often more pleasant than a bunch of perl scripts with the page hard coded. Hey, if it lets you take complex logic out of Java, I'd say it's good.

      • by Scarblac ( 122480 ) <slashdot@gerlich.nl> on Monday November 03, 2003 @02:02PM (#7378832) Homepage

        There's this thing with Java... It's meant for big things. It is really irritating and a lot of hard work to make something small with Java. However, it's relatively not much more work to make something bigger.

        If you want to log something to a file or so, simply print some debug statements, and you don't want to fight the system, setup Log4J. Make all the config files, instantiate the objects, etc, etc. For a small program that's a lot of work. For a huge program, it's the same amount of work :-) And then you have a cool logging system. Look at the files and structure you need to make 1 servlet. Frameworks like Struts are even worse. But once it works, adding a bit is pretty clean.

        Somehow, through all its stupid little irritations it has in addition to this (all the cruft you get because an int isn't an Object etc), I still sort of like Java. But I'll use Python if I'm making something small.

        Given all that, I don't care about a "print" statement.

        • by Anonymous Coward on Monday November 03, 2003 @02:06PM (#7378871)
          Exactly,
          Java if build for enterprise class, multi-threaded applications. Those libraries are big, tested and debugged across platform. So they Work, AND ARE HIGHLY PRODUCTIVE.

          Secondly, the JVM doesn't compile classes you don't use into the .jar file. So, it only LOOKS BIG.

          Where to you people come from.
    • Re:Jess (Score:1, Funny)

      by Anonymous Coward on Monday November 03, 2003 @02:15PM (#7378936)
      "If Java had true garbage collection, most programs would delete themselves upon execution."
      -- Robert Sewell
    • by realfake ( 302363 ) on Monday November 03, 2003 @02:27PM (#7379085)
      Jess seems, at first glance, to be equally as redundant. Perhaps some of you could delve into the benefits of Jess, on my account? :) A rules engine like Jess or CLIPS allows you to express a set of rules very economically, expressively, and readably. It's not right for everything, but in many situations it allows you to do things that would be practically impossible if you expressed the same thing as if/then/else statements in code. For example, in a situation where rules need to change frequently, it's great to be able to allow an expert user to edit the rules which can live somewhere outside the code. If you find yourself recompiling frequently to suit the fickle whims of a user who wants some kind of rule changed, a rules engine can be a huge time saver.
  • by Pingular ( 670773 ) on Monday November 03, 2003 @12:49PM (#7378225)
    on the Java Website [sun.com].
    'based on the Chapter 13, "Adding a graphical interface," of the book Jess in Action published by Manning Publications Company. Test your knowledge of Jess, the rule engine and scripting language for Java technology.'
  • by Anonymous Coward on Monday November 03, 2003 @12:50PM (#7378233)
    3. What are the licensing issues surrounding Jess?
    Jess is and will always be available at no cost for academic use worldwide, with an appropriate license. Commercial users can purchase a Jess license by contacting Craig Smith at Sandia's Technology Transfer office (Telephone 925/294-3358; email: casmith@sandia.gov.) The licensing fees are negotiable and generally quite reasonable. You can also purchase an inexpensive "Home Office" license. Jess is not licensed under the GPL, the LPGL, the BSD license, or any other free software or open source license. Redistribution of the Jess source code under any free software or open source license is prohibited.

    • by Anonymous Coward on Monday November 03, 2003 @12:58PM (#7378297)
      Are you implying that beacuse it is a commercial program that we should not be promoting books about it? Oh, yea, its beacuse Java is open source... not.
      • by Austerity Empowers ( 669817 ) on Monday November 03, 2003 @01:38PM (#7378628)
        It's a valid enough point, one of the reasons I tend to stay away from Java is that it is not an open standard. Jess appears similarly crippled, not worth the time to parse 400+ pages of text.

        I have a real hard time using any proprietary language or toolkits in the "general purpose" world, I'm sure many do. It doesn't have to be "open-source" (C and C++ aren't technically "open source"), but I would only use proprietary languages/toolkits if I absolutely had to because the boss made me or the situation demanded it. There are lots of reasons, not all are religious.

        Don't get me wrong, those things HAVE application and are sometimes unavoidable, but I do general purpose design engineering, I personally would never even consider putting such a tool in my box until the day I need it. I have friends who do more IT or business tool writing who may find this of value because their needs are specific.

        Another point is that there are LOTS of commercial toolkits, especially for GUI frameworks. It's surprising to see a review about one that doesn't even have a decent license. If I'm going to pay $$$ to use a software tool then the book drops in priority. I'd almost expect them to provide a tutorial as part of the sales literature...

        The review is useful for those that HAVE to use it, or for the niche which Jess may fill. However knowing the license tells me I should not buy this book. Building stuff is expensive enough as it is, I need LESS licensing and royalties, not more.

    • by Anonymous Coward on Monday November 03, 2003 @01:20PM (#7378469)
      If you are an american citizen or an american corporation, you ought to be able to file an FOIA request for the source. The software was built with your US tax dollars and is maintained with those same tax dollars, you own it unless they can make a good case that there's a public health or national security issue that overrides that -- which is doubtful.
      • by Anonymous Coward on Monday November 03, 2003 @01:28PM (#7378552)
        even if a FOIA were to succeed, you would still not have the right to use the source code in production or redistribute it...
        • by alangmead ( 109702 ) * on Monday November 03, 2003 @06:46PM (#7381911)

          If it was actually made by the US Government, it can't be covered by copyright (see http://www.copyright.gov/circs/circ1.html [copyright.gov]) The reason it is set up that way, even if it isn't nearly as apparent now, is that it is our government. If they are creating works, they are doing so on our behalf, and we should be the recipients. Copyright has the work-for-hire concept, where an employees work is owned by the employer. For government works, we are the employer.

          The exception, or perhaps loophole, depending on your point of view, are works created by private corporations under contract to the government. If it was created by people under contract, then the corporations awarded the contract would likely own the copyright.

      • Re:FOIA (Score:2, Insightful)

        by Anonymous Coward on Monday November 03, 2003 @01:48PM (#7378718)
        Actually, JESS is nothing more than a knock-off of the CLIPS expert system, that was developed at NASA. You can obtain the complete system source code for CLIPS right here:

        CLIPS Expert System [ghg.net]

        As for your tax dollars, forget it - you'll never see them again if they go into SNL. It's sad to see NASA build a great system and released it for free, then see Sandia copy it (how imaginative) and try to sell you a license for it.

    • by Anonymous Coward on Monday November 03, 2003 @04:42PM (#7380591)
      I'd just like to add that much to its detriment, Jess is absurdly expensive to license for commercial use. We're talking Oracle Server price range here, which I think is fairly ridiculous for what you get. I hope Sandia will wise up and realize what an impediment this price is to establishing a commercial base. My guess is that a fair percentage of users decompile the demo version of Jess and remove its 30 day timeout...
    • by rszeto ( 525624 ) on Tuesday November 04, 2003 @01:04AM (#7384191)
      I have actually used Jess in an in-house production system and we where able to obtain a free (as in beer) license from the author as long as we did not distribute it.
  • I see.. (Score:4, Insightful)

    by cK-Gunslinger ( 443452 ) on Monday November 03, 2003 @12:50PM (#7378236) Journal
    Chappell points out that the book's author is also Jess' creator, so he speaks from authority.

    And without bias, I'm sure. =P
    • by brunes69 ( 86786 ) <slashdot@keir s t e a d.org> on Monday November 03, 2003 @12:54PM (#7378260)
      The book is not a review of the pros and cons of Jess, it is an instructional guide. If you bought this book you either already have a Jess implementation or are seriously considerig one. The bias of the author is as irrelavent as the bias of a Ford engineer writing the product repair manual for a F-150.

      • by cK-Gunslinger ( 443452 ) on Monday November 03, 2003 @01:29PM (#7378566) Journal
        The bias of the author is as irrelavent as the bias of a Ford engineer writing the product repair manual for a F-150.

        Not necessarily. For example, if a critic of Jess were the author, you might see passges like, "Although Jess *technically* has support for X, the current implementation is some-what of a cludge, and may cause problems with Y, etc...", whereas a proponent of the language may say "Jess was designed from the start with support for X and blah, blah.."

        You will almost *always* have bias in any writings, whether intentional or not. These biases will filter though and modify or enhance the opinions of the reader. Sometimes that can be used for advantage. I know that if someone who is a die-hard 'C' programmer and loves to talk trash about C++ needs a book to learn some C++ for a project, it's best to get a book that aligns with and plays off of his/her opinions. If you get them a book that says "So you have to learn some C++ even though we all know C is superior? Well, here's some C++ code that behaves just like you would expect C to, etc...", they will be more comfortable and willing to use it versus, say, a book that start off with "We all know that C is dead! Long live C++! It's about time you dumped that ancient language and stepped into the new paradigm, etc..."

        Like they say, opinions are like a**holes, we all have them and everyone's but yours stinks!
  • by account_deleted ( 4530225 ) on Monday November 03, 2003 @12:51PM (#7378238)
    Comment removed based on user account deletion
  • Cool... (Score:3, Funny)

    by Black Parrot ( 19622 ) on Monday November 03, 2003 @12:52PM (#7378247)

    ...a Java implementation of some really old stuff.

    Pardon my curmudgeonry.

  • by Anonymous Coward on Monday November 03, 2003 @12:56PM (#7378276)
    The content of the book is good. I would agree with the reviews. If you're not familiar with rules engines or how RETE works, you're better off with a simpler book. From personal experience, the hardest part of using rules engines in a production environment is understanding how to use rules engines and the pros/cons of RETE. Rete was originally described by Forgy and has been proven in numerous academic and production systems.

    Rules technology is pretty powerful, but like everything else, you have to know what you're doing. The most common mistake is when a programmer tries to use rules engines in a procedural manner like VB. One area where rules engines are used in production systems is business process management, like processing insurance or handling loan approvals.

  • by Asmodeus ( 10868 ) on Monday November 03, 2003 @12:56PM (#7378277)
    Drools is another rete based rule engine with a java implementation. It has more flexible licencing.

    Asmo
  • by zontroll ( 714448 ) on Monday November 03, 2003 @12:59PM (#7378303)
  • by BigGerman ( 541312 ) on Monday November 03, 2003 @01:03PM (#7378338)
    Just curious -
    have any of the slashdotters used rule-based frameworks for real-life projects?
    What do you think about Java Community Process Rule Engine JSR [jcp.org]?
    What about frameworks that try to keep things simple, like Ruleaid [ruleaid.com]?
    • by clary ( 141424 ) on Monday November 03, 2003 @01:18PM (#7378459)
      have any of the slashdotters used rule-based frameworks for real-life projects?
      Back in a previous life (circa 1988), I did a little rule-based "expert system" programming for a major defense contractor using CLIPS, a forward-chaining tool based on the Rete algorithm. The application was to advise users of a particularly arcane computational fluid dynamics program how to set up its myriad input parameters so that the program wouldn't blow up.
    • by Anonymous Coward on Monday November 03, 2003 @01:21PM (#7378478)
      JSR 94 has been kinda stagnant for a while. It was originally started back in 2000. But since then the activity has been nill or non-existent.
    • by possible ( 123857 ) on Monday November 03, 2003 @01:40PM (#7378647)
      Our NeXpose [rapid7.com] security scanner uses JESS to perform vulnerability assessments against remote systems. The expert system is a nice way to have NeXpose not only identify vulnerabilities, but also take advantage of the vulnerabilities to perform more tests. It can be done without an expert system, but it works very nicely using JESS.
    • by rosbif ( 71236 ) on Monday November 03, 2003 @02:17PM (#7378953)
      Theres quite a bit out there using commercial software such as JRules (http://www.ilog.com) - big bucks tho'. I've done a couple of projects in the finacial sector using JRules and it is very good when you have a set of business rules that change frequently (yes, even faster than the build time of a slashdotter project....), or in the rare instances when your users are clueless..........
    • by bmyers ( 643397 ) on Monday November 03, 2003 @03:10PM (#7379566)
      I created a rules-based system for a financial institution back in 1996 using CLIPS (the C-based precursor to JESS). It is still being used on the trading floor today, as far as I know.

      I am also planning on using JESS for the AI for a large Java-based online game I'm currently working on. I am really looking forward to using the backward-chaining capabilities of JESS for this.

      I think JESS (and CLIPS) is best suited for fairly complex systems where you want to break out the rules separately and let non-programmers work on them. One of the big advantages is that you can load the rules without having to recompile everything. Another is that it is much easier to debug rules than to debug raw code, just like for any scripting language.

      As for the rules JSR, I haven't looked at it recently. But from what I remember it seemed to fit in pretty well with JESS.

    • by witwerg ( 26651 ) on Monday November 03, 2003 @05:28PM (#7381104)
      Actually I am currently trying to use some of this in a new windows-based(java is ok) project and I have been evaulating various systems. Jess happens to be one of them along with it's fuzzy logic counter part, FuzzyJ. Have a quote for both on my desk. So.. If anyone has some recommendations.. :) Ideally It would integrate pretty easily with a database, support mixed chaining, the backward-chaining wouldn't be some form of kludged forward chaining, fuzzy logic, and confidence values. Though when it comes down to it, I could attempt to kludge confidence values and the database stuff. Also doing something different the few places I want fuzzy logic. My ideal solution was 15k, which eventually wouldn't be a problem, but initally is a bit much to convince my superiors to use.
    • by MCISheriff ( 721657 ) on Wednesday November 05, 2003 @09:12AM (#7395348)
      Although there are a number of posts that discuss how old rule based programming is, how hard it is to use, how out-dated, etc.; I totally disagree. Every language may have its purpose, so rule based programming isn't a solution for everything. I have never used JESS, but use CLIPS, which it is based upon. I find CLIPS to be an extremely useful system, very well thought out, and easy to extend. Our system is written in C++ and uses CLIPS to implement the business logic. The system has been in place for 7 years, is used globally, and several of the sites where it is used process over 100 million events a day. (So it can be used in "near-real time" systems. While compiled languages and rules-based-systems may be faster, CLIPS is easy to use, easy to change, and easy to debug. And as I said earlier, it is very easy to extend. We've been using it for 7 years and I've never regretted our decision to go with it. And while it may be an "old" language, it is very well supported and continues to be updated.
  • by hey ( 83763 ) on Monday November 03, 2003 @01:03PM (#7378339) Journal
    Would be nice to have something like this
    for the regular *nix environment.
  • by peter_gzowski ( 465076 ) on Monday November 03, 2003 @01:06PM (#7378362) Homepage
    Jess is very handy, don't get me wrong, and the Java API is great except for one large omission:

    Right now the jess.Defrule class does not expose enough public methods to properly create one outside of the jess package.

    That's straight out of the latest Jess documentation [sandia.gov]. You can't construct rules from Java! Well, you can pass a text string to Rete.executeCommand, but this is hardly elegant. Grrr... Am I missing something here? If not, then PLEASE give me a constructor for Defrules, Mr. Friedman-Hill.

    It's getting frustrating enough that I've been interested in an open-source alternative to Jess (academic license is no charge, but you have to pay for it for commercial use): drools [drools.org]. This has to be the dumbest project name ever, and I haven't even looked at much of the code yet, but it looks promising. Anybody have any experience with it? Please hold back your drool jokes for now...
    • by jjames ( 218359 ) on Monday November 03, 2003 @01:26PM (#7378529)

      The obvious "solution" (aka workaround) is to create your own local jess package and put your extension in that package. E.g. org.jess.rules is a local directory in your build tree and you can put your new Java rule classes in that package. When you compile your rules will be in the same package and the compilation will succeed.

      I know, an ugly hack it is. But it will work until the class exposes public methods for extension.

    • by AlXtreme ( 223728 ) on Monday November 03, 2003 @03:42PM (#7379931) Homepage Journal
      Trust me, you're not the only one

      A few months ago, we had to implement a rule-based system for our AI course, using Jess. Now, I'm all for CLISP-like syntax, but it's very annoying to actually get something working in Jess: the documentation on the site was incomplete and sketchy (had to discover how stuff worked the hard way, by breaking it) and also to me it seemed Jess wasn't even complete (defqueries were very messy, although using the java API should have proven better results. maybe). Our Mr. Friedman-Hill seemed to be too busy working on his book for the last 4/5 years and wasn't interested in developing something that actually was complete.

      In short, my opinion is: don't use it. There are far better alternatives for rule-based solutions, maybe not as the java API Jess is (although I havn't used drool either). It'll save you a real headache once you actually use the beast and need something working... then again, I might just be disillusionised, as I was hoping it to be far more useful...

      as always, my 2 eurocents

  • by Anonymous Coward on Monday November 03, 2003 @01:09PM (#7378382)
    Then you can just use the stable and mature "CLIPS", a C rule system like a Lisp one of yore, but without the Lisp.

    (Or roll your own in Common Lisp, it takes about 20 minutes.)

  • by SparafucileMan ( 544171 ) on Monday November 03, 2003 @01:13PM (#7378410)
    Can anyone tell me if this Jess is related in any way to the JESS [sourceforge.net] language that runs Warcraft 3? ;) They are not exactly the same but I'm trying to figure out if, say, the WC3 version is in any way based off Jess.
  • by watchful.babbler ( 621535 ) on Monday November 03, 2003 @01:13PM (#7378411) Homepage Journal
    Should you wish an alternative to the commercially-licensed JESS, Stanford has its own Java Theorem Prover [stanford.edu], DAML-compliant and capable of handling forward- and backward-chained reasoning. Object code can be freely redistributed.
    • by Anonymous Coward on Monday November 03, 2003 @06:04PM (#7381457)
      From my experience, the one problem with Java Theorem Prover is that it doesn't allow for rules. It does reasoning only with properties defined by DAML/RDF. It's a nice piece of software but if you want to specify rules (complicated, or otherwise) you have to use some other system (Prolog, JESS, CLIPS, etc.)


      BTW, DAML is being replaced by OWL, a W3C standard.

  • by jlmcgraw ( 140716 ) on Monday November 03, 2003 @01:14PM (#7378416)
    As a person named Jess, I have to say this is the best Slashdot story I've seen in years!

    Although I am a bit disturbed to find out that Ernest Friedman-Hill is in fact my creator. Mom's got some explaining to do!

  • by xeo_at_thermopylae ( 585330 ) on Monday November 03, 2003 @01:34PM (#7378591)
    Rule-based systems (and far better ones than JESS) have been available for nearly 30 years now. I wrote one in LISP for an college AI class. Prolog is a rule engine.

    Implementing rule-based programming in Java is like putting lipstick on a pig (if you don't know, rule-based programming is the lipstick). It is best to leave rule processing to a language designed for it and use Java for other tasks for which its better suited, such as interaction.

    • by Anonymous Coward on Monday November 03, 2003 @02:00PM (#7378821)
      This solution isn't for you.
      But, It works for anyone else with a current Java CROSS-PLATFORM application to support.
      • The "cross-platform" aspect of Java is a red herring here; most "rule-based" systems have been "cross-platform" for years.

        And despite the "cross-platform" compatibility of Java, few corporations use it to their financial benefit. (Please, no posts from individuals who have ported a Java app from one platform to another).

        • by bmyers ( 643397 ) on Monday November 03, 2003 @03:20PM (#7379695)
          I am currently working for a large financial institution that is replacing an NT server farm with a Linux server farm. This was quite easily done because they are using WebLogic (i.e. Java) as an application server.

          And when I say server farm I mean several dozens of servers. And several hundred thousand lines of code.

          Oh yeah - they also found a massive performance improvement switching from NT to Linux.

          Almost forgot! They are using Blaze, which is a Java-based rules engine.

          • by Anonymous Coward on Monday November 03, 2003 @04:08PM (#7380198)
            And your point is????

            The post to which you responded to anticipated your response, but you did not read it:

            (Please, no posts from individuals who have ported a Java app from one platform to another).

            Do you consider yourself a typical Java developer? If that is true, then Java is indeed in trouble.

            • by bmyers ( 643397 ) on Monday November 03, 2003 @06:25PM (#7381663)
              My point was addressing this sentence:

              despite the "cross-platform" compatibility of Java, few corporations use it to their financial benefit.

              My reply showed how a large corporation is using the cross-platform compatibility of Java for financial benefit. This is not an example of an individual (me) porting a Java app. This is an example of an app requiring no porting, because it is already cross-platform compatible. The institution in question will save thousands of dollars: 44 servers * ~$3000/server/year = $132000 per year (approx), purely by taking advantage of Java's cross-platform compatibility.

              And, yes, I do consider myself a typical Java developer, one of a mere 3-5 million or so.

        • Walk into just about any shop that uses java and you'll probably see a bunch of people coding on Windows boxes. But it's doubtful you'll see their apps running on MS platforms. Every company I've worked with has had this same setup. That's a pretty straightforward example of using java's cross platform capabilities.
    • by Anonymous Coward on Monday November 03, 2003 @02:02PM (#7378833)
      Prolog is a back-chaining system (quite mature), JESS is mostly forward chaining (though I understand they can do back chaining too.).

      The implementation language is unimportant. The fact that it runs on any platform, and its integration with Java for enterprise apps is important.

      While rule based systems are not new, they are now being rediscovered to house business logic in a mid-tier.

      IMHO much of the value of a rule engine stems from the strict separation between business logic and enterprise programming (e.g. transactions, dbs, etc.) FORCED on you be the discipline of a representation change.
      • Prolog is a back-chaining system (quite mature), JESS is mostly forward chaining (though I understand they can do back chaining too.).

        My post was not about Prolog per se, but about the many Prolog- and Lisp-based rule engines available (A detailed aside: a forward-chaining rule engine can be written in Prolog easily).

        The implementation language is unimportant. The fact that it runs on any platform, and its integration with Java for enterprise apps is important.

        Funny that you say the implementation language is unimportant in the first clause of this sentence and then contradict that in the second clause.

        IMHO much of the value of a rule engine stems from the strict separation between business logic and enterprise programming (e.g. transactions, dbs, etc.) FORCED on you be the discipline of a representation change.

        You're dead wrong here: transactions and database rules are part, if not the major part, of business logic. The only way to force discipline is to write rules in the database and then allow users and developers access to the database through well-defined paths/rules/procedures.

        • by kfg ( 145172 ) on Monday November 03, 2003 @04:22PM (#7380353)
          When I saw your original post I thought, "Uh oh, he's going to get slammed," and I see I haven't been disapointed. Bloody shame that.

          You were formally trained in an age when computer science was still part of the science department and not the business trade school department. Your concepts of programming are thus founded in the logic and mathmatics behind the languages and "apps."

          Modern programers who are in "Enterprise" computing aren't even going to understand a single word you say, nor are they likely to care to.

          The whole structure is ad hoc (just look at Java itself. Yech) thrown together and driven by the commercial interests of the vendors, not the customers, and thus not even the logic inherent in the problems to be solved.

          If Turing, Von Neumann and Codd showed up here to try to explain things they'd get modded down as flamebait.

          Normally I'd say forgive them, they know not what they do, but we're talking about a culture in which I find it hard to forgive what amounts to wilfull ignorance.

          To the extent that they're really tradespeople and a product of trade training I suppose they can be forgiven, but I'd hope they'd pick up a book once in a while that explains what they're doing rather than just books about the practicum of trade.

          The "lab" work is supposed to be built on top of deeper understanding.

          Well, I shall soon be joining you in "flamebait hell." Save me a barstool, will you? We'll talk.

          KFG
    • Just curious. Why do you think Java is ill-suited for rule processing?
      • Why do you think Java is ill-suited for rule processing?

        I didn't say that, but your statement is true: Java is ill-suited for rule-processing because there is no question that it cannot compete with languages designed for that purpose. Its a matter of what a language is suited for:

        1. Java was designed to control appliances and hardware devices, failed there,
        2. Java was remarketed to WWW browsers, failed there,
        3. Java was remarketed to WWW servers, where it now is barely holding off a competitor that charges $$ for it's products.

        So as a language, Java has a rather checkered history. It has found a niche (WWW servers) and is finally doing well there, but it has been a long, bumpy ride for old Java programmers (see the Official Unofficial Java History [about.com] for details.)

        In contrast, Lisp and Prolog were designed as symbolic manipulation languages and do that exceedingly well.

        But my main point was "why would one perform a task in Java that can be more easily, more quickly and more cost-effectively done in a readily-available language designed for the task?"

        • by axxackall ( 579006 ) on Monday November 03, 2003 @04:41PM (#7380570) Homepage Journal
          "why would one perform a task in Java that can be more easily, more quickly and more cost-effectively done in a readily-available language designed for the task?"

          Why managers still insist we use JMS instead of Erlang or Jabber?

          Why managers still insist we use EJB even when a single container is enough and no load-balancing required?

          Why managers still insist we use Oracle for databases with 10 tables of 1000 records each 100 transactions a day?

          Why managers still insist we use MS Exchange server when we don't use anything besides email from it (no tasks or calendars, no public folders)?

          Why managers still insist we use ... wait a minute, now I know "why" - because of managers, they still have no brains in the head and no honesty in the heart. That's why.

  • by arnasobr ( 134440 ) on Monday November 03, 2003 @01:54PM (#7378773)
    My favorite is Mandarax [mandarax.org]. It's a Java-based backward chaining rule engine with excellent documentation. I've found it to be fast and extensible. And even better, it's LGPL!
  • by Mr. Dop ( 708162 ) on Monday November 03, 2003 @02:18PM (#7378959)
    DevX.com [devx.com] has an interview [devx.com] with Dr. Ernest J. Friedman-Hill inwhich he talks about its (JESS) development and what the next steps are.
  • by Anonymous Coward on Monday November 03, 2003 @03:01PM (#7379440)
    Can someone give me a good summary of what a rule-based system is and what it's used for?
  • by psychofox ( 92356 ) on Monday November 03, 2003 @03:06PM (#7379510)
    It may have 'more flexible' licensing, however it is non-free: 'Jess can be licensed for commercial use, and is available for academic use.' This is not a problem per-se, I'm just a little surprised that this article is nothing more than an advertisement for a book on a non-free, commercial piece of software...
  • by namespan ( 225296 ) <namespan.elitemail@org> on Monday November 03, 2003 @04:15PM (#7380268) Journal
    GNU Prolog Java [sourceforge.net]

    JavaLog [unicen.edu.ar]

    More Links [kobe-u.ac.jp]

  • by jefu ( 53450 ) on Monday November 03, 2003 @07:51PM (#7382531) Homepage Journal
    Jess is really a java embedded version of CLIPS which is still available for free at this site.

    I think the licensing issues are annoying enough - I could get an academic license as I teach at a university, but when (a while back while I was "under" employed) I tried to get a version so I could do some experiments (I wanted to try using it as a bit of support software for a volunteer organization even) and maybe use it in classes at some future point and discovered the licensing was going to make that impossible.

    Oh well. Count me down as someone who will not even discuss Jess as a possibility in my classes.

  • by rollingcalf ( 605357 ) on Monday November 03, 2003 @11:21PM (#7383746)
    Know about any other books or downloadable papers that provide an introduction to the theory behind rules engines and/or the Rete algorithm? I haven't been able to find anything useful on the web. Any search turns up sites hyping their own product.
  • by MonkeyBoyo ( 630427 ) on Tuesday November 04, 2003 @01:00AM (#7384174)
    The Rete [lispworks.com] algorithim [temple.edu] (Rete: A Fast Algorithm for the Many Pattern/Many Object Pattern Match Problem by Forgy in Artificial Intelligence 19, September 1982) is an efficient solution to a problems given in a specification that should never be used because of conceptual nastiness.

    The attractive promise of declarative rule-based systems is that each "fact" (base or implicational) in the problem domain can be stated as a rule. But this is hardly the case in Rete based systems.

    The Rete algorithm was designed to efficiently implement the non-monotonic forward chaining "blackboard" paradigm. A Rete inference system has a "blackboard" of facts that a large number of rules monitor, and when the some facts on the blackboard match the condition of a rule, the rule can fire and add information to the blackboard (monotonic) or change or delete information from the blackboard (non-monotonic). The main conceptual issue in this sort of system is what to do when the blackboard satisfies more than one rule. The problem is that firing one rule may change the blackboard so that another rule that could have fired can no longer do so. So Rete ranks the applicability or rules.

    Thus a blackboard system winds up with rules whose meaning is not just contained in a rule but has to be inferred from all of the other rules that might be fired by similar input conditions. Most Rete based applications I've looked at wind up using the blackboard to essentially implement program counters to control program flow. And in general, adding a new rule may generate new solutions but it also may break prior solutions.

    Pure monotonic systems (with forward and/or backward chaining) are conceptually very easy to analyze because all of the "facts" are truly independent.

    One can add a form of non-monotonic behavior to monotonic systems by ranking their solutions. E.g. a monotonic system generates N solutions but ranking via some ordering prunes these down to say 1 or 2 best solutions. This external ranking is non-monotonic because adding new facts to the monotonic part may result in different "best" solutions.

    So, basically I am advocating an inference system which is conceptually defined as results = rank(infer(facts, data)). If these functions have good mathematical definitions then it may be possible to implement their combination so that ranking controls or happens during the inference process but the results look as if it was external, and thus one avoids the computational horror of over-generation by the "infer" function.

    Rete however explicitly and globally performs the ranking process during inference and an arbitrary Rete rule set is probably NP complete to analyze. But maybe a good implementation of a conceptual separation of "rank" and "infer" could be realized by a Rete-like network.
  • by TheBashar ( 13543 ) on Friday November 07, 2003 @06:01AM (#7415387)
    Wow, this book got the highest rating of any review I've ever seen on /.

    (For those that didn't look it's rated 1930110898)

Real Programs don't use shared text. Otherwise, how can they use functions for scratch space after they are finished calling them?

Working...