Hi there,
I have the same issue... Any pointers? I try to use RetroGuard obfuscator.
Thanks in advance
Type: Posts; User: sonar-ua; Keyword(s):
Hi there,
I have the same issue... Any pointers? I try to use RetroGuard obfuscator.
Thanks in advance
2slowth: Do you have any pointers on how to setup the order of web applications that Tomcat deploys?
Well, remoting stuff like Hessian is the first thing coming on my mind, but I'm sure there should be some better way. Since all guys run in the same Tomcat, there should be a way in Spring to share...
Greetings,
My application has a persistence layer that is being deployed to Tomcat as a separate war file, that is, as a separate application. There are several web apps that need to use this...
Greetings,
I'm trying to add the second level cache capability to my application. My provider choice was EHCache and JBoss Cache. Both were tried to use through Spring Modules Cache Facade but...
Greeting,
I want to implement a simple client-server application with the following feature: client receives some remote object and call it's method. I don't have an intention to use EJBs so my...
can you please correct the links you've posted? they seem to be non-working
No problem! Here's what I've got (without irrelevant stuff):
public Dosuser lookupUser(String username)
{
Dosuser user = null;
........... lookup code ..............
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
My situation is very close to the one described in that topic, moreover I tried the solution described there before starting this topic. I tried to move my beans into applicationContext.xml (which is...
I've just noticed that OpenEntityManagerInViewFilter \ Interceptor doesn't support deferred close like OpenSessionInViewFilter \ Interceptor. Moreover, the OpenEntityManagerInViewFilter doesn't have...
Thanks alot! Quite easy, but it helped!
Well, I do try to use interceptor, but there is no guidelines how exactly should I use it.
Hi there!
I've found out that, OpenEntityManagerInView filter\interceptor pattern, despite the fact that this is said to be quite good solution to avoid LazyInitializationExceptions, isn't...
Basically what I'm trying to do is to add Spring-based services into an existing servlet application. I'm not really happy about the idea of destroying the current architecture, so it would be better...
ok, can you point me to how do I solve this problem with autowiring mechanism?
Basically, yes. In client code, the signature would look like
ClassXYZ objXyz = (ClassXYZ)xmlFactory.getChildBean("parent", ClassXYZ.class)
(The method will throw an exception if ClassXYZ...
David,
Well, this is not exactly what I want. Ideally, I don't want to be obliged to write additional
<bean id="objXYZ" class="ClassXYZ" parent="parent"/>
as soon as ClassXYZ appears in...
So, if I understood your point correctly, Spring cannot instantiate a child (subclass) of some parent bean without explicit child declaration in the config file?
Regards,
sonar
Thanks for this pointer, guys, I'd go for parent and children beans concept definitely.
Let me ask you one more thing related to this topic: as my hierarchy evolves and new subclasses appear, am...
Greetings,
In my class hierarchy, I have interface
ISomeInterface,
ClassA implements ISomeInterface,
ClassB implements ISomeInterface, ... ,
ClassN implements ISomeInterface.
My...
yes, the SQL among other things has the inserts to Alias table:
jdbcTemplate.execute("insert into Alias (UserKey, UserName) values (1000, 'John_Doe_login')");
jdbcTemplate.execute("insert...
Yes, exactly, I've put that annotation on test methods!
My guess is that the current non-working sequence
1. begin transaction
2. put data to DB
3. invoke test method
4. test method...
Basically, jdbcTemplate puts some test data into database. So its critical for the test methods to be executed in transaction. If I use @NotTransactional annotation, all tests fail because they rely...
I've tried that! Let me show you the link to a screenshot of one of the suspended threads. It seems that jdbc driver waits for something. Can you please comment on this?
here is the screenshot:...