Search:

Type: Posts; User: reyjexter; Keyword(s):

Search: Search took 0.02 seconds.

  1. Yes, *DisplayAction are singleton. I just started...

    Yes, *DisplayAction are singleton. I just started my application & profiler without doing anything yet but the cglib proxy (ClassName$$FastClassByCGLIB$$) of the bean are already created.
  2. BeanAutoProxyCreator creates more than one proxy

    Is it normal that BeanAutoProxyCreator creates more than one cglib proxy of a target object? When running my profiler, I have noticed that 50+ cglib proxy of the object was created.

    My advice...
  3. Replies
    2
    Views
    1,065

    you need to use the spring struts plugin. you...

    you need to use the spring struts plugin. you don't need to use the DelegatingActionProxy since everything will be automatic.

    Here's the link:...
  4. Why more than 1 cglib proxy is created for struts 1 action?

    While profiling my spring application, I noticed that more than one cglib proxy is being created. The following output is shown on the profiler:
    ...
  5. I initialized spring using web.xml and I believe...

    I initialized spring using web.xml and I believe the bean factory used is "org.springframework.beans.factory.support.DefaultListableBeanFactory" which unfortunately does not contain a refresh method....
  6. modify byte code before a bean is pre-instantiated

    I was trying to modify the byte code using javassist so i placed the logic on the constructor. What I'm trying to do is to change the value of @Qualifier to something else. The class file's byte code...
  7. Replies
    3
    Views
    1,430

    problem with aspectj and load time weaving

    when i start tomcat with the following parameter:

    -javaagent:C:\aspectjweaver.jar

    i'm getting the following error:



    java.lang.reflect.InvocationTargetException
    at...
  8. catching UnexpectedRollbackException thrown in a transactional service

    i have a service class that throws a custom exception that inherits RuntimeException class. when ever an exception is thrown on my service class, the transaction is rolled back thus showing some...
  9. Replies
    12
    Views
    1,634

    no not yet. i still cant figure out why hibernate...

    no not yet. i still cant figure out why hibernate runs out of sync with the database when i directly edit the data using a mysql browser tool.

    i'll try to recreate the same application with...
  10. Replies
    12
    Views
    1,634

    yes i have finished creating a test case for...

    yes i have finished creating a test case for that. everytime i update the database programatically after the transaction is commited, hibernate is able to synchronize with the database.
  11. Replies
    12
    Views
    1,634

    hello! i still cant solve this problem. from...

    hello!

    i still cant solve this problem. from what the log file is displaying, no unusual behavior seems to be happening behind. i did tried to print the session everytime and the hashcode seems...
  12. Replies
    12
    Views
    1,634

    i cant seem to follow you. i'm really sorry.. i'm...

    i cant seem to follow you. i'm really sorry.. i'm new with java ee. anyway maybe this will help:

    my part of my jdbc.properties file:



    and part of my applicationContext.xml file:
  13. Replies
    12
    Views
    1,634

    yes and hibernate is able to retrieve the correct...

    yes and hibernate is able to retrieve the correct data after restarting tomcat.
  14. Replies
    12
    Views
    1,634

    problem with spring ioc and struts action

    i'm trying to wire spring and struts but i ran into some problems.

    i tried updating the database directly using SQLyog(mysql client) but when i refreshed my page, the text displayed is not the...
  15. weird behaviour when mapping classes using hibernate annotation

    when i placed my annotation on top of my getter method, hibernate created a column name using the property name but when i placed my annotation on top of the property, hibernate created a column with...
Results 1 to 15 of 15