Hi 

        I checked out the JCS module from CVS. Command - 
cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic checkout
jakarta-turbine-jcs

After that I tried to compile the source files by invoking maven.

I am getting errors. Most of them are because of missing class or source
files. 

Do anyone have solution for this problem?

Regards and Thanks
Senthil


E:\ieso\jcs\jakarta-turbine-jcs>maven
 __  __
|  \/  |__ Jakarta _ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|   v. 1.0-beta-7

E:\ieso\jcs\jakarta-turbine-jcs

java:prepare-filesystem:

java:compile:
    [javac] Compiling 202 source files to
E:\ieso\jcs\jakarta-turbine-jcs\target\classes
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\disk\index
    [javac] [ERROR] symbol  : class IndexedDiskElementDescriptor
    [javac] [ERROR] location: class
org.apache.jcs.auxiliary.disk.indexed.IndexedDisk
    [javac] [ERROR]     IndexedDiskElementDescriptor appendObject(
CacheElement obj )
    [javac] [ERROR]     ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\ht
    [javac] [ERROR] symbol  : class GroupCacheHub
    [javac] [ERROR] location: package group
    [javac] [ERROR] import
org.apache.jcs.engine.control.group.GroupCacheHub;
    [javac] [ERROR]                                            ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\ht
    [javac] [ERROR] symbol  : class GroupCacheHub
    [javac] [ERROR] location: package group
    [javac] [ERROR] import
org.apache.jcs.engine.control.group.GroupCacheHub;
    [javac] [ERROR]                                            ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\ht
    [javac] [ERROR] symbol  : class GroupCacheHub
    [javac] [ERROR] location: package group
    [javac] [ERROR] import
org.apache.jcs.engine.control.group.GroupCacheHub;
    [javac] [ERROR]                                            ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\ht
    [javac] [ERROR] symbol  : class GroupCacheHub
    [javac] [ERROR] location: package group
    [javac] [ERROR] import
org.apache.jcs.engine.control.group.GroupCacheHub;
    [javac] [ERROR]                                            ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\ja
    [javac] [ERROR] symbol  : class ICompositeCache
    [javac] [ERROR] location: package behavior
    [javac] [ERROR] import org.apache.jcs.engine.behavior.ICompositeCache;
    [javac] [ERROR]                                       ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\so
    [javac] [ERROR] symbol  : class ICompositeCache
    [javac] [ERROR] location: package behavior
    [javac] [ERROR] import org.apache.jcs.engine.behavior.ICompositeCache;
    [javac] [ERROR]                                       ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\so
    [javac] [ERROR] symbol  : class ICompositeCache
    [javac] [ERROR] location: package behavior
    [javac] [ERROR] import org.apache.jcs.engine.behavior.ICompositeCache;
    [javac] [ERROR]                                       ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\lateral\xm
    [javac] [ERROR] symbol  : class ICompositeCache
    [javac] [ERROR] location: package behavior
    [javac] [ERROR] import org.apache.jcs.engine.behavior.ICompositeCache;
    [javac] [ERROR]                                       ^
    [javac] [ERROR]
E:\ieso\jcs\jakarta-turbine-jcs\src\java\org\apache\jcs\auxiliary\remote\ser
    [javac] [ERROR] symbol  : class RemoteCacheServerAttributes
    [javac] [ERROR] location: package server
    [javac] [ERROR] import
org.apache.jcs.auxiliary.remote.server.RemoteCacheServerAttributes;

-----Original Message-----
From: Sunil Pandit [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 04, 2002 11:51 PM
To: Turbine JCS Users List
Subject: Re: when is the compositecache object released from
CacheManager?



It looks like a defect. None of the methods which calls dispose on
compositecache removes this object from the hashtable. For example the
release method.
What's a procedure to get this defect fixed ? What's the procedure to check
in the code ? .

Thanks
Sunil


 

                    James Taylor

                    <jtaylor             To:     Turbine JCS Users List
<[EMAIL PROTECTED]>      
                    @4lane.com>          cc:

                                         Subject:     Re: when is the
compositecache object released  from        
                    11/04/2002           CacheManager?

                    12:02 PM

                    Please

                    respond to

                    "Turbine JCS

                    Users List"

 

 





You are correct ... I would think freeCache should remove it from the
table. Anybody know a reason why that should not happen?

On Mon, 2002-11-04 at 12:49, Sunil Pandit wrote:
>
> Though I am able to call freecache on compositecachemanager which calls
> dispose on compositecache , it does not remove this cache from the
hashmap.
> Shouldn't after successful dispose this  composistecache instance should
be
> removed from the hashtable . This can be done in freecache call in
> CompositeCachemanager. Am I missing something ?
>
> Thanks
> Sunil
>
>
>

>                     James Taylor

>                     <jtaylor             To:     Turbine JCS Users List
<[EMAIL PROTECTED]>
>                     @4lane.com>          cc:

>                                          Subject:     Re: when is the
compositecache object released  from
>                     11/04/2002           CacheManager?

>                     10:49 AM

>                     Please

>                     respond to

>                     "Turbine JCS

>                     Users List"

>

>

>
>
>
>
> If you are using the CacheAccess (singleton) model, you should be able
> to get it with:
>
> CompositeCacheManager.getInstance();
>
> Since there is only one per JVM
>
> On Mon, 2002-11-04 at 11:43, Sunil Pandit wrote:
> >
> > Thanks James for quick response . That leads me to next question how do
I
> > get the cachemanager .? Its a private attribute on CacheAccess
> > ,GroupCacheAccess and JCS and I don't see any method that gives me
access
> > to CacheManager .
>
>
>
>
> --
> To unsubscribe, e-mail:   <
> mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <
> mailto:[EMAIL PROTECTED]>
>
>
>
>
>
>
> --
> To unsubscribe, e-mail:   <
mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <
mailto:[EMAIL PROTECTED]>
>



--
To unsubscribe, e-mail:   <
mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <
mailto:[EMAIL PROTECTED]>






--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to