Search:

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

Search: Search took 0.02 seconds.

  1. DaoSupport is packaged within spring-tx. Please...

    DaoSupport is packaged within spring-tx. Please double check your classpath. HibernateDaoSupport is packaged within spring-orm. Maybe you missed the tx jar file.
  2. Replies
    3
    Views
    1,504

    Try hibernate.hbbm2ddl.auto=update

    Try hibernate.hbbm2ddl.auto=update
  3. Replies
    4
    Views
    2,214

    Try looking for an AspectJ library: e.g....

    Try looking for an AspectJ library: e.g. aspectjweaver.jar shipped with the Spring distribution.
  4. Replies
    2
    Views
    697

    Maybe this is what you are looking for:...

    Maybe this is what you are looking for:
    http://static.springframework.org/spring/docs/2.5.x/reference/aop-api.html
    @see 7.10.2. Pooling target sources
  5. I found this example very helpful getting started...

    I found this example very helpful getting started with Spring, Hibernate and JOTM.

    http://today.java.net/pub/a/today/2006/08/31/jotm-transactions-in-spring-and-hibernate.html
  6. Replies
    17
    Views
    3,950

    I've had a similar problem. Starting my Spring...

    I've had a similar problem. Starting my Spring application without Jetty:



    public static void main(String[] args) {
    ApplicationContext applicationContext = new...
  7. I used a trigger and SchedulerFactoryBean: ...

    I used a trigger and SchedulerFactoryBean:


    <bean id="myJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
    <property name="targetObject"...
  8. Replies
    11
    Views
    1,636

    Do you use CGLIB or dynamic proxies? "Spring AOP...

    Do you use CGLIB or dynamic proxies?
    "Spring AOP can also use CGLIB proxies. This is necessary to proxy classes, rather than interfaces."
    Otherwise you need use an Interface
    BusinessManagerImpl...
  9. Replies
    11
    Views
    1,636

    Sorry, this is only needed to enable @AspectJ...

    Sorry, this is only needed to enable @AspectJ Support.
    "execution(* *..BusinessManager+.getAllItems())" should match the Interface, too. (If its named BusinessManager, right?)
  10. Replies
    11
    Views
    1,636

    Do you use autoproxy creation?...

    Do you use autoproxy creation?
    <aop:aspectj-autoproxy />
  11. Replies
    11
    Views
    1,636

    In your 2nd try you mixed up the Methodname...

    In your 2nd try you mixed up the Methodname inside of your pointcut

    getAllAtms instead of getAllItems

    expression="execution(* *..BusinessManagerImpl.getAllItems())"
  12. Maybe your class should implement the PersonaDao?...

    Maybe your class should implement the PersonaDao?

    public class PersonaDaoImpl *implements PersonaDao* {
Results 1 to 12 of 12