You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussion group for Salve project at salve.googlecode.com
|
|
|
Status?
|
| |
Hi Igor, just wondering what the status of this project is? Is development continuing on 3.0? Cheers, John
|
|
Classloader leak in Transformer
|
| |
Hi, I've been dealing with permgen space outofmemory errors in my application, and managed to trace it to many classes with names like sun.reflect.GeneratedSerializa tionConstructorAccessor being created and not unloaded from my permgen space. These classes have in turn been loaded from hundreds of DelegatingClassLoader... more »
|
|
"Cannot write into the dependency field" exception
|
| |
Hello,
I am using Salve 3.0 (with Wicket 1.4.x).
I have an abstract class with a private property defined as follows:
@Dependency
private transient ReferralService referralService;
I get the following exception during compile-time instrumentation:
"Cannot write into the dependency field... more »
|
|
Possible Concurrency Issues ?
|
| |
Hi,
Just by taking a quick look at the get & put methods in the Lru3Cache
class in salve(1.1), it seems to me it might have concurrency issues
with multiple threads. for example one thread will find a bean in
element #2 and one in #0, but before returning the element the other
one swaps it place.... more »
|
|
Eclipse interagtion issue
|
| |
hi
i try to use salve2.1 (current source) and it works fine in maven.
using eclipse though fails: after adding salve nature to the project,
the plugin marks the salve2.xml file and claims:
"Could not configure Salve: salve/config/xml/ConfigLoader"
salve2.xml is fairly simple
<config>
<packages>... more »
|
|
Salve "Could not find dependency for key" during Spring initialization
|
| |
Hello, I am using Salve in my project and it has been working great. Today I decided to add a "clock" field annotated with @Dependency to a persistence class IdentifiableModel which is also annotated with JPA annotations. This didn't work and the error is shown below. I believe what happens is that the app starts up and initializes Spring. Spring,... more »
|
|
@dependency on hashmap
|
| |
Hi all,
In a class I have a Map<Resource, Poi> pois;
Resource is as Jena Resource and not serializable. Can I add an
@Dependency annotation on the map? In this case, however, I am getting
a NPE on the first field that should be instrumented.
Thanks, Christoph
-- You received this message because you are subscribed to the Google Groups "Salve" group.... more »
|
|
salve delivers NPE at 1st startup
|
| |
Hi,
I have following class :
@Singleton
public class PoiLoader implements Serializable, IPoiLoader {
private Multimap<TouristType, Poi>
poisRelatedToSpecificTouristTy pe = ArrayListMultimap.create();
@Inject
private CatadvisorProperties properties;
@Dependency
private OntologyHelper ontHelper;... more »
|
|
salve & wicket
|
| |
Hi,
I am trying to integrate Wicket with Salve. The Salve test example in
the Wiki works fine. I integrated Salve in Wicket, when I am running
the Salve instrumentation plugin, I get following information:
[INFO] ecgroup/persistence/PoiLoader: 82: Acess to field 'workManager'
intercepted by @Dependency instrumentor... more »
|
|
install salve using maven2
|
| |
Hi all, how to install salve using maven?
By including following statements in the project pom, the dependency
does not get resolved.
<dependency>
<groupId>salve</groupId>
<artifactId>salve</artifactId>
<version>2.0</version>
</dependency>... more »
|
|
|