• Object has been removed or recycled

    By Ulrich Krause 1 decade ago

    The db.recycle in init() method of CategoryBean sometimes throws an exception ( on 8.5.2 ) Runs without issues on 9.0

            } finally {
                try {
                    if (navigator != null) {
                        navigator.recycle();
                    }
                    if (view != null) {
                        view.recycle();
                    }
                    if (db != null) {
                        //db.recycle();
                    }

    I have commented out the problematic part and the code runs stable now on 8.5.2

     

    • Thanks

      By Niklas Heidloff 1 decade ago

      Thanks Ulrich. Wasn't aware of this.