Pages

Wednesday, January 23, 2013

Integration of Drools and spring to perform business logic validation in JSF

In a previous post I explained how to use AOP to perform custom validation in JSF. Here I will show how you can use the business logic framework Drools to perform validation based upon external (business) rules in conjunction with springframework.

In this example I will perform the bussiness rules validation inside an advice class, but you can implement the same mechanism to perform that validation inside a JSF backing bean or in a spring bean.

Inside your application-context.xml file add your advice in the following way:

<bean id="validatorAspect" 
   class="com.foo.aspects.BackingBeanValidatorAdvice" 
   factory-method="aspectOf">
<property name="resources">
<list>
<value>/com/foo/business/rules.drl</value>
</list>
</property>
</bean>

I'm assuming you have basic knowledge of Drool, I will not get into syntax details here, there is a lot of documentation in Drool's site; instead I will just present a simple validation rule file rules.drl:


package com.foo.business

import com.foo.model.ModelBean;
import com.foo.aspects.Error;

query "Error" ()
    error : Error()
end


rule "Rule 1"
when
   ModelBean( id == 32 && internalId not matches "(J|P|R) ([0-9]){6}")
then
   Error err = new Error();
   err.setSummary("Error in Model Bean. ");
   err.setDetail("Internal Id not matches format: (J, P o R) followed by whitespace and 6 digits");
   insert(err);
end

Error is just a simple Pojo containing two properties (summary and detail).

Then, you must fire the validation inside the advice class:
public aspect BackingBeanValidatorAdvice {

    private KnowledgeBase kbase;

    private StatefulKnowledgeSession ksession;
    
    private String[] resources;

    pointcut doSaveChanges() : execution(* com.foo.beans.BackingBean.saveChanges(..));

    void around() : doSaveChanges() {
        FacesContext context = FacesContext.getCurrentInstance();
        ModelBean mbean = context.getApplication().evaluateExpressionGet(context, "#{bBean.selected}", ModelBean.class); 

        this.init();
        this.getKsession().insert(mbean);
        this.getKsession().fireAllRules();

        QueryResults results = this.getKsession().getQueryResults("Error");
        if (results.size() > 0) {
            for (QueryResultsRow row : results) {
                Error err = (Error) row.get("error");
                context.addMessage("error", new FacesMessage(FacesMessage.SEVERITY_ERROR, err
                        .getSummary(), err.getDetail()));
            }
        }
        proceed();
    }

    public void init() {
        if (this.getKbase() == null) {
            KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder();
            for (int i = 0; i < this.getResources().length; i++) {
                String rule = this.getResources()[i];
                kbuilder.add(ResourceFactory.newInputStreamResource(this.getClass().getResourceAsStream(rule)),
                    ResourceType.DRL);
            }
    
            if (kbuilder.hasErrors()) {
                System.out.println(kbuilder.getErrors());
                return;
            }
            Collection < KnowledgePackage > kpkgs = kbuilder.getKnowledgePackages();
            KnowledgeBase kbase = KnowledgeBaseFactory.newKnowledgeBase();
            kbase.addKnowledgePackages(kpkgs);
            this.setKbase(kbase);
        }
        this.setKsession(this.getKbase().newStatefulKnowledgeSession());       
    }
    
    public StatefulKnowledgeSession getKsession() {
        return ksession;
    }

    public void setKsession(StatefulKnowledgeSession ksessionToSet) {
        this.ksession = ksessionToSet;
    }

    public String[] getResources() {
        return resources;
    }

    public void setResources(String[] resourcesToSet) {
        this.resources = resourcesToSet;
    }

    public KnowledgeBase getKbase() {
        return kbase;
    }

    public void setKbase(KnowledgeBase kbase) {
        this.kbase = kbase;
    }    
}


That's it. In case the validation fails, a FacesMessage is added to the FacesContext and JSF is responsible for handling and showing the error in a jsf page, eg: <h:messages .../>

91 comments:

  1. Not only is it possible that GMO foods could end our lives and certainly our health as many today have come to recognize, and that we are becoming the unhealthiest humans who have ever walked this earth and it all ties back to the GMO foods that people unknowingly starting getting off of supermarket shelves in the 1990's approved by the FDA top heavy with former Monsanto employees. America is the only country in the world that does not require GMO labeling because the government said it wasn't necessary. This article examines the unhealthy approval and comparison of Fluoride in the 1940s and GMO foods in the 1990s. Lumion 9.5

    ReplyDelete
  2. Steve is a successful business owner who takes his business very seriously. He focuses on growing his business and has several employees. People love his products and services and are sharing them with others. What Steve is struggling with is making his business financially fit. It seems like his business is always tight, and he is barely making it each month. Sound familiar? free or cheap cad software

    ReplyDelete
  3. Search engine optimization (SEO) is a host of techniques, approaches and strategies to prepare your website to be found by major search engines. It is often compared to alchemy. Everyone knows what SEO experts do, but very few know how they do it. In fact, many SEO gurus fiercely disagree on the how part. Many tactics are available, but SEO is not a cheap endeavor, so one has to be careful when allocating valuable advertising dollars to it. moz

    ReplyDelete
  4. Search engine optimization (SEO) is a host of techniques, approaches and strategies to prepare your website to be found by major search engines. It is often compared to alchemy. Everyone knows what SEO experts do, but very few know how they do it. In fact, many SEO gurus fiercely disagree on the how part. Many tactics are available, but SEO is not a cheap endeavor, so one has to be careful when allocating valuable advertising dollars to it. seo blog comments

    ReplyDelete
  5. Search engine optimization (SEO) is a host of techniques, approaches and strategies to prepare your website to be found by major search engines. It is often compared to alchemy. Everyone knows what SEO experts do, but very few know how they do it. In fact, many SEO gurus fiercely disagree on the how part. Many tactics are available, but SEO is not a cheap endeavor, so one has to be careful when allocating valuable advertising dollars to it. backlinks google

    ReplyDelete
  6. I like this web site because so much utile stuff on here : D. 먹튀

    ReplyDelete
  7. i joined so many seo forum on the internet and they are really quite helpful and i have learned a lot, 먹튀파이어

    ReplyDelete
  8. It was something of great contentment getting to your site recently. I arrived here this day hoping to find out something new. I was not disappointed. Your ideas on new strategies on this area were enlightening and a fantastic help to me personally. Thank you for creating time to write down these things as well as for sharing your ideas. 호게임

    ReplyDelete
  9. Colin Ferrell and Jennifer Aniston step out of their usual roles and surprisingly deliver plenty of laughs with their own cruelly aggressive mannerisms. 먹튀

    ReplyDelete
  10. You need to take part in a contest for probably the greatest blogs on the web. I will advocate this site! 먹튀

    ReplyDelete
  11. Colin Ferrell and Jennifer Aniston step out of their usual roles and surprisingly deliver plenty of laughs with their own cruelly aggressive mannerisms. Mega888 apk download

    ReplyDelete
  12. Colin Ferrell and Jennifer Aniston step out of their usual roles and surprisingly deliver plenty of laughs with their own cruelly aggressive mannerisms. 918kiss mega888 android

    ReplyDelete
  13. I have been surfing online more than three working hours today, however I never found any kind of interesting document like your own. It is quite worth enough to me. Personally, if all web owners and blog writers created great articles as you did, the internet will be a lot more useful than previously.
    [url=https://www.m-xe88.com/918kiss/]918kiss kiss918 apk download[/url]

    ReplyDelete
  14. I have been surfing online more than three working hours today, however I never found any kind of interesting document like your own. It is quite worth enough to me. Personally, if all web owners and blog writers created great articles as you did, the internet will be a lot more useful than previously. 토토사이트

    ReplyDelete
  15. Merely wanna remark on few general things, The website pattern is perfect, the subject matter is really excellent : D. 파워볼사이트

    ReplyDelete
  16. i would be busy again doing some home decors this coming christmas, i’d be buying some new decors for the season’ 918kiss

    ReplyDelete
  17. 블로그에 북마크를 추가 할 것 같습니다. 당신은 정말 멋진 이야기를 가지고 있습니다. 블로그를 공유해 주셔서 감사합니다. 먹튀검증

    ReplyDelete
  18. i really like this article please keep it up. 먹튀사이트

    ReplyDelete
  19. I really appreciate the kind of topics you post here. Thanks for sharing us a great information that is actually helpful. Good day! 안전놀이터

    ReplyDelete
  20. Love to read it,Waiting For More new Update and I Already Read your Recent Post its Great Thanks 토토검증

    ReplyDelete
  21. it was a wonderful chance to visit this kind of site and I am happy to know. thank you so much for giving us a chance to have this opportunity 먹튀폴리스

    ReplyDelete
  22. This is exciting, nevertheless it is vital for you to visit this specific url: 메이저사이트

    ReplyDelete

  23. I want to we appreciate you this passion you cash in on throughout establishing the next few paragraphs. I am trustworthy identical best work from you when you need it at the same time 국산야동


    ReplyDelete
  24. Hi there, You have done an excellent job. I will certainly digg it and personally suggest to my friends.
    I am confident they will be benefited from this web site. 국산야동

    ReplyDelete
  25. A few things i have seen in terms of laptop or computer memory is that often there are features such as SDRAM, DDR etc, that must fit in with the specs of the mother board. If the personal computer’s motherboard is reasonably current while there are no operating-system issues, improving the memory literally will take under a couple of hours. It’s one of the easiest computer upgrade types of procedures one can envision. Thanks for sharing your ideas. app development company in south Africa

    ReplyDelete
  26. A few things i have seen in terms of laptop or computer memory is that often there are features such as SDRAM, DDR etc, that must fit in with the specs of the mother board. If the personal computer’s motherboard is reasonably current while there are no operating-system issues, improving the memory literally will take under a couple of hours. It’s one of the easiest computer upgrade types of procedures one can envision. Thanks for sharing your ideas. web hosting south africa

    ReplyDelete
  27. A few things i have seen in terms of laptop or computer memory is that often there are features such as SDRAM, DDR etc, that must fit in with the specs of the mother board. If the personal computer’s motherboard is reasonably current while there are no operating-system issues, improving the memory literally will take under a couple of hours. It’s one of the easiest computer upgrade types of procedures one can envision. Thanks for sharing your ideas. book accommodation in Gauteng

    ReplyDelete
  28. Its an amazing website, 온라인카지노 I really enjoy reading your articles.

    ReplyDelete
  29. This is really helpful post and very informative 온라인카지노there is no doubt about it.

    ReplyDelete
  30. Appreciate the effort and information you have given온라인카지노 in writing this article .

    ReplyDelete
  31. A few things i have seen in terms of laptop or computer memory is that often there are features such as SDRAM, DDR etc, that must fit in with the specs of the mother board. If the personal computer’s motherboard is reasonably current while there are no operating-system issues, improving the memory literally will take under a couple of hours. It’s one of the easiest computer upgrade types of procedures one can envision. Thanks for sharing your ideas. pussy888 free download

    ReplyDelete
  32. Your writing is extremely valuable info. This sort of web content was really valuable to me. I would love to create something like you to share this interesting details with. Your web site is remarkable. You're a fantastic individual to be able to compose this on a web site similar to this. 우리카지노

    ReplyDelete
  33. A few things i have seen in terms of laptop or computer memory is that often there are features such as SDRAM, DDR etc, that must fit in with the specs of the mother board. If the personal computer’s motherboard is reasonably current while there are no operating-system issues, improving the memory literally will take under a couple of hours. It’s one of the easiest computer upgrade types of procedures one can envision. Thanks for sharing your ideas. Prayer reminder app

    ReplyDelete
  34. Wohh exactly what I was looking for, regards for posting . shared web hosting service.

    ReplyDelete
  35. Wohh exactly what I was looking for, regards for posting . classic guest house

    ReplyDelete
  36. Greetings! This is my first visit to your blog! We are a group of volunteers and starting
    a new initiative in a community in the same niche. Your blog provided us valuable information to work on.
    You have done a marvellous job!

    my webpage ? 카지노


    >cc

    ReplyDelete

  37. You can now easily login for a favorite online casino
    and click on the mobile tab. Not everybody is able to find
    a very good site as a way to make use of the cheap deals and entertainment though.
    Nowadays gaming websites provides best features and functionalities
    that assure an interactive platform. 송송넷



    ReplyDelete
  38. Hey, just looking around some blogs, seems a pretty nice platform you are using. I’m currently using WordPress for a few of my sites but looking to change one particular of them over to a platform similar to yours as a trial run. Anything in particular you would recommend about it? hoverboard price south africa

    ReplyDelete
  39. Superb information article. Thank you . The travelers need to fill up the Kenya online visa application form to get the Kenya visa and check kenya visa requirements for us citizens. Therefor, if the apply online, will get the fastest visa services with 24 hours customer support.

    ReplyDelete
  40. What an outstanding post! “I'll be back” (to read more of your content). Thanks…. Foriegn travelers whose sole purpose of visiting India is for leisure, sightseeing, religious work or casual travel to visit their friends or relatives can apply for Indian tourist visa through online India visa application system.

    ReplyDelete
  41. I really appreciate this post. I have been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thanks again chakra

    ReplyDelete
  42. Any person several opportune pieces, it comes surely, as well as you bring in crave of various the many other types of hikers close to you with hard part your question. pre owned awnings music therapy

    ReplyDelete
  43. I am very enjoyed for this blog. Its an informative topic. It help me very much to solve some problems. Its opportunity are so fantastic and working style so speedy. janjiqq

    ReplyDelete
  44. Thanks for taking the time to discuss that, I feel strongly about this and so really like getting to know more on this kind of field. Do you mind updating your blog post with additional insight? It should be really useful for all of us. ทางเข้าแทงบอลdewabet

    ReplyDelete
  45. No doubt this is an excellent post I got a lot of knowledge after reading good luck. Theme of blog is excellent there is almost everything to read, Brilliant post. are big chief carts real

    ReplyDelete
  46. Great things you’ve always shared with us. Just keep writing this kind of posts.The time which was wasted in traveling for tuition now it can be used for studies.Thanks คาสิโนสดSexybaccarat

    ReplyDelete
  47. No doubt this is an excellent post I got a lot of knowledge after reading good luck. Theme of blog is excellent there is almost everything to read, Brilliant post. เซ็กซี่บาคาร่าสดออนไลน์

    ReplyDelete
  48. Great things you’ve always shared with us. Just keep writing this kind of posts.The time which was wasted in traveling for tuition now it can be used for studies.Thanks เว็บแทงบอล

    ReplyDelete
  49. Great things you’ve always shared with us. Just keep writing this kind of posts.The time which was wasted in traveling for tuition now it can be used for studies.Thanks เว็บแทงบอลออนไลน์

    ReplyDelete
  50. Great things you’ve always shared with us. Just keep writing this kind of posts.The time which was wasted in traveling for tuition now it can be used for studies.Thanks แทงบอลขั้นต่ำ10บาท

    ReplyDelete
  51. Great things you’ve always shared with us. Just keep writing this kind of posts.The time which was wasted in traveling for tuition now it can be used for studies.Thanks แทงบอลออนไลน์

    ReplyDelete
  52. This article is really very helpful for me and I really appreciate you for sharing it with me… Emergency visa to India application form (Process within 1 to 3 days) You can easily avail the facility for immediate processing of your Indian Visa by applying through the fast track Indian visa services we provide.

    ReplyDelete
  53. Keep up the good work , I read few posts on this web site and I conceive that your blog is very interesting and has sets of fantastic information. fe accs 18 ru

    ReplyDelete
  54. Keep up the good work , I read few posts on this web site and I conceive that your blog is very interesting and has sets of fantastic information. Private Banking

    ReplyDelete
  55. Very informative post! There is a lot of information here that can help any business get started with a successful social networking campaign. kaiyaangel.com

    ReplyDelete
  56. Thanks for taking the time to discuss that, I feel strongly about this and so really like getting to know more on this kind of field. Do you mind updating your blog post with additional insight? It should be really useful for all of us. https://www.driveriteny.com/

    ReplyDelete
  57. I think this is among the most important information for me. And i’m glad reading your article. But want to remark on few general things, The web site style is perfect, the articles is really great : D. Good job, cheers focalin addiction

    ReplyDelete
  58. Thanks , I have recently been searching for info about this topic for a while and yours is the greatest I’ve came upon till now. However, what concerning the bottom line? Are you sure concerning the source? rentacar kosova https://oncalltreatment.com/how-get-rid-bruises-intravenous-drug-use/

    ReplyDelete
  59. Nice post. I find out some thing very complicated on diverse blogs everyday. Most commonly it is stimulating to see content from other writers and employ a little something at their store. I’d choose to use some while using the content in my small blog no matter whether you don’t mind. Natually I’ll supply you with a link on your web blog. Many thanks for sharing. https://www.evokewellnessma.com/can-you-snort-percocet-pills/

    ReplyDelete
  60. Congratulations for posting such a useful blog. Your blog isn’t only informative but also extremely artistic too. There usually are extremely couple of drunk people

    ReplyDelete
  61. Nearly all goods are typically hand designed plus subsistence economic local weather dominates. Individualism is really weakly manufactured within just persons ethnicities given that are typically interpersonal programs. Unaltered customers ethnicities no extra can be determined inside industrialized nations much like the Usa plus North america. https://www.evokecoconutcreek.com/

    ReplyDelete
  62. Hmm is anyone else experiencing problems with the images on this blog loading? I’m trying to find out if its a problem on my end or if it’s the blog. Any feed-back would be greatly appreciated. 1337.camp

    ReplyDelete
  63. Thanks for all you do. I like the website themes and layout, you are posting amazing blogs.... (Overseas Citizenship Of India Services) OCI card application online process. You can apply for an OCI card online and you can read all the info related to OCI(Overseas Citizenship Of India Services) card via the Indian visa website.

    ReplyDelete
  64. Wonderful! I like your work... Thanks for sharing this article... The Indian tourist evisa in 2022 starts issuing long-term visas to those who want to stay longer in India for any kind of purpose. Check the guidelines and updates.

    ReplyDelete
  65. Great man. Nice to read your helpful blog . Saudi Arabia tourism is very popular. Saudi Arabia visa tourist Is one of most demanding travel visas in the world . Saudi Arabia is a very good place to visit . Al Ula is one of the best-known destinations in Saudi Arabia .It Also included in the top 20 most visited countries in the world.

    ReplyDelete
  66. GTA Online Diamond 안전한 홀덤사이트 Heist Scope Guide (All Access Points)

    ReplyDelete
  67. Thanks for sharing such a great information with us. Ledger live

    ReplyDelete