<div dir="ltr"><div><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif">Hi everybody! </span><br></div>
<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">For demo purposes, there&#39;s a class Book that goes as follows: </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><pre style="color:rgb(0,0,0)">@Entity
@Table(name=&quot;book&quot;)
public class Book implements Serializable {
@Id
private String id;
private String title;
private String description;
private Float unitcost;
private String isbn;
private Integer nbofpages;

//Default ctor... getters &amp; setters... toString...
}</pre><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">I created a basic rule that checks if Book&#39;s title contains &quot;Java&quot; it&#39;s left in the session, otherwise it&#39;s retracted: </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><pre style="color:rgb(0,0,0)">dialect &quot;mvel&quot;
import com.arcady.*;

rule &quot;not a java book&quot;
when
b:Book(title.contains(&quot;Java&quot;)==false)
then
System.out.println(&quot;Yet another boring book... Retracting: &quot; + b.toString());
retract(b);
end</pre><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">So far, so good. Problem now is when trying to persist all the Drools + Book&#39;s instances that still remained in the session into MySQL database (I used</span><a href="http://packtlib.packtpub.com/library/9781849511964/ch02lvl1sec17" rel="nofollow" link="external" style="font-size:13px;color:rgb(85,26,139);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif" target="_blank">http://packtlib.packtpub.com/library/9781849511964/ch02lvl1sec17</a><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"> as reference). </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">After inserting 4 books as listed below into the session and firing all rules: </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<pre style="color:rgb(0,0,0)">Book javaBook1 = new Book(&quot;Java EE 7&quot;);
Book javaBook2 = new Book(&quot;Java Persistence API 2.1&quot;);
Book javaBook3 = new Book(&quot;Java SE 8&quot;);
Book csharpBook1 = new Book(&quot;C# 5.0&quot;);</pre><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">I get in the output: </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<pre style="color:rgb(0,0,0)">Hibernate: insert into SessionInfo (lastModificationDate, rulesByteArray, startDate, OPTLOCK) values (?, ?, ?, ?)
Hibernate: update SessionInfo set lastModificationDate=?, rulesByteArray=?, startDate=?, OPTLOCK=? where id=? and OPTLOCK=?
Hibernate: update SessionInfo set lastModificationDate=?, rulesByteArray=?, startDate=?, OPTLOCK=? where id=? and OPTLOCK=?
Hibernate: update SessionInfo set lastModificationDate=?, rulesByteArray=?, startDate=?, OPTLOCK=? where id=? and OPTLOCK=?
Yet another boring book... Retracting: Book{id=304e76fd-3d9a-479b-b22d-a774d721df65, title=&#39;C# 5.0&#39;, description=&#39;Blabla&#39;, unitcost=0.0, isbn=&#39;ABC123&#39;, nbofpages=12345}
Hibernate: update SessionInfo set lastModificationDate=?, rulesByteArray=?, startDate=?, OPTLOCK=? where id=? and OPTLOCK=?</pre><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">Thus the session was persisted 4 times, and indeed that&#39;s what also shows in the database in the sessioninfo table. </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">Problem is Book&#39;s table is created with all the correct columns automatically but remains empty... </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">What do you think causes this? </span><br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">


<br style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px"><span style="color:rgb(0,0,0);font-family:Verdana,Geneva,Helvetica,Arial,sans-serif;font-size:13px">Thanks a lot!</span><br clear="all">


<div><br></div>-- <br><div dir="ltr">Regards,<br>Arcady Trembovler<br><br></div>
</div>