Search:

Type: Posts; User: sonar-ua; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Thread: obfuscation

    by sonar-ua
    Replies
    3
    Views
    1,357

    Hi there, I have the same issue... Any...

    Hi there,

    I have the same issue... Any pointers? I try to use RetroGuard obfuscator.

    Thanks in advance
  2. Replies
    5
    Views
    945

    2slowth: Do you have any pointers on how to setup...

    2slowth: Do you have any pointers on how to setup the order of web applications that Tomcat deploys?
  3. Replies
    5
    Views
    945

    Well, remoting stuff like Hessian is the first...

    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...
  4. Replies
    5
    Views
    945

    Layered application question

    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...
  5. Replies
    0
    Views
    1,530

    Questions on 2nd level cache

    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...
  6. Replies
    0
    Views
    995

    Hessian question

    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...
  7. can you please correct the links you've posted?...

    can you please correct the links you've posted? they seem to be non-working
  8. No problem! Here's what I've got (without...

    No problem! Here's what I've got (without irrelevant stuff):



    public Dosuser lookupUser(String username)
    {
    Dosuser user = null;

    ........... lookup code ..............
  9. applicationContext.xml

    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"...
  10. My situation is very close to the one described...

    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...
  11. I've just noticed that...

    I've just noticed that OpenEntityManagerInViewFilter \ Interceptor doesn't support deferred close like OpenSessionInViewFilter \ Interceptor. Moreover, the OpenEntityManagerInViewFilter doesn't have...
  12. Thanks alot! Quite easy, but it helped!

    Thanks alot! Quite easy, but it helped!
  13. Well, I do try to use interceptor, but there is...

    Well, I do try to use interceptor, but there is no guidelines how exactly should I use it.
  14. Example of using OpenEntityManagerInViewInterceptor

    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...
  15. How to access DispatcherServlet's context from another Servlet?

    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...
  16. ok, can you point me to how do I solve this...

    ok, can you point me to how do I solve this problem with autowiring mechanism?
  17. Basically, yes. In client code, the signature...

    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...
  18. David, Well, this is not exactly what I want....

    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...
  19. So, if I understood your point correctly, Spring...

    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
  20. Thanks for this pointer, guys, I'd go for parent...

    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...
  21. How do I inject a property to a numerous beans?

    Greetings,

    In my class hierarchy, I have interface
    ISomeInterface,
    ClassA implements ISomeInterface,
    ClassB implements ISomeInterface, ... ,
    ClassN implements ISomeInterface.

    My...
  22. Replies
    13
    Views
    2,073

    yes, the SQL among other things has the inserts...

    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...
  23. Replies
    13
    Views
    2,073

    Yes, exactly, I've put that annotation on test...

    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...
  24. Replies
    13
    Views
    2,073

    Basically, jdbcTemplate puts some test data into...

    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...
  25. Replies
    13
    Views
    2,073

    I've tried that! Let me show you the link to a...

    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:...
Results 1 to 25 of 28
Page 1 of 2 1 2