<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    cache NULL when clicking on a button
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/barbaraboie">barbara b</a> in <i>JBoss Cache</i> - <a href="http://community.jboss.org/message/579791#579791">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello</p><p>Before I used a previous version of JBoss Cache where I simply could use in every bean:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="font-size: 10pt;" style="FONT-SIZE: 10pt;"><span _mce_style="font-size: 10pt;" style="FONT-SIZE: 10pt;"></span></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> @In(create=true)CacheProvider cacheProvider</p><p>public void method(){</p><p>&#160;&#160;&#160; ...</p><p>&#160;&#160;&#160; List) cacheProvider.get("tree-"+id);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; if (rubriek == null){</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; cacheProvider.put("tree-"+id,getTree());</p><p>&#160;&#160;&#160; }</p><p>&#160;&#160;&#160; ...</p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>and the caching worked just fine through the whole site.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Now I'm trying to work with JBoss Cache 3.2.5.GA and it's not working. Every time I click on a button, the cache is empty.</p><p>What I did were these steps:</p><p>I started changing the code in each bean into</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>CacheFactory factory = new DefaultCacheFactory();Cache cache = factory.createCache("cache-configuration.xml"); public void method(){&#160;&#160;&#160; ... &#160;&#160; List) cache.get(fqn,"tree"); &#160;&#160;&#160; if (rubriek == null){&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; cache.put(fqn,"tree",getTree());&#160;&#160;&#160; }&#160;&#160;&#160; ...}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #000000;" style="COLOR: #000000;"></span>&#160;</p><p><span _mce_style="color: #000000;" style="COLOR: #000000;">When I tried this code, I saw that the cache was each time emptied when I hit a button. I thought I could come because I start in each bean a new Cache by using <em>factory.createCache("cache-configuration.xml")</em></span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #000000;" style="COLOR: #000000;"></span>&#160;</p><p><span _mce_style="color: #000000;" style="COLOR: #000000;">So I made a new class that can be used in every bean and so that the cache is only started once</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #000000;" style="COLOR: #000000;"></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #000000;" style="COLOR: #000000;"></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>public class CacheHelper{</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160; public static CacheFactory&#160; factory = new DefaultCacheFactory();</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><div> </div><p>&#160;&#160;&#160;&#160; public static Cache cache = factory.createCache("cache-configuration.xml"); </p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><div><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"></span></span></span></span></span><div> </div></div><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"></span></span></span></span></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"></span></span></span></span></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>public void method(){</p><p>&#160;&#160;&#160; ...</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> &#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>but the cache is still empty each time I hit a button.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Is there anyone who can tell me what I'm doing wrong?</p><p>Thanks in advance!</p><p>barbara</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>O, and this is my cache-configuration.xml</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><br/><br/><span> </span><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span _mce_style="color: #000000; font-size: 10pt;" style="COLOR: #000000; FONT-SIZE: 10pt;"><span _mce_style="font-size: 10pt;" style="FONT-SIZE: 10pt;"><span _mce_style="font-size: 10pt;" style="FONT-SIZE: 10pt;"><span _mce_style="font-size: 10pt;" style="FONT-SIZE: 10pt;"><span _mce_style="color: #7f0055; font-size: 10pt;" style="COLOR: #7f0055; FONT-SIZE: 10pt;"></span></span></span></span></span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><div _mce_style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;" class="mcePaste" id="_mcePaste" style="POSITION: absolute; WIDTH: 1px; HEIGHT: 1px; OVERFLOW: hidden; TOP: 0px; LEFT: -10000px;"></div><br/><br/></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/579791#579791">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Cache at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2052">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>