Search:

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

Search: Search took 0.01 seconds.

  1. How does Spring EJB implement the singleton

    Our project use MDB (EJB3) and Spring extensively.
    Recently one of the MDB will require to use bean which impl a instance pooling with a normal singleton bean.

    I start reading the EJB3 spec and...
  2. Replies
    16
    Views
    3,263

    This is exactly what I think when trying to...

    This is exactly what I think when trying to design the system more DDD. As I've already some experience on AOP using Spring, I'm also interested to introduce AOP into the project, however, is the use...
  3. Replies
    16
    Views
    3,263

    Is DDD must goes with AOP?

    I am very much like the idea of DDD, but when I am going to impl
    it in one of my current project, I found that it is not really possible without
    introducing real aspectj into the project.

    In...
  4. 7x24 application, bootstrapping Jar from remote repository

    In a distributed Java based system, I would like to found a solution
    such that the 'thin, headless client application' can bootstrap the
    whole application by loading most of the Jar from a...
  5. Say, for the module "base", "base.support" can...

    Say, for the module "base", "base.support" can contains implementation class of the interfaces defined in "base", as well as some other classes used internally.

    With this arrangement, client of...
  6. When think about package design, beside the...

    When think about package design, beside the layering issue, I'd aso
    consider the dependency within package.

    I think simple package per layer approach have a few issue,
    1. It doesn't answer...
  7. Replies
    4
    Views
    1,340

    If you need to bind the Role with method in a...

    If you need to bind the Role with method in a configurable manner, I believe, you need to extend the AOP based MethodSecurityInterceptor.

    Alternatively, two layer ROLE mapping may also solve you...
  8. Replies
    16
    Views
    2,501

    I agree with your opinion, the former is much...

    I agree with your opinion, the former is much better IMO.
    Personally, I think DB is just one of the centralized resource shared by
    multiple nodes, just like the file storage. So running DB as a...
  9. Replies
    4
    Views
    1,442

    One alternative may be Message Driven POJO You...

    One alternative may be Message Driven POJO

    You can use Jencks + ActiveMQ + Spring.
    This combination can keep you away from EJB while providing Async remoting
    capability.
  10. Replies
    2
    Views
    832

    Big Thanks !!!! I think that is my way.

    Big Thanks !!!!

    I think that is my way.
  11. Replies
    2
    Views
    832

    Calling second method on target

    Hi,

    I'm new to AOP, and I wonder if it is possible
    to implement a requiement with AOP such that,

    Whenever
    target.methodA(String param1);
    is called,

    I turned the call to
  12. Yes, I've also try to rethink about the design,...

    Yes, I've also try to rethink about the design, but doesn't have any
    sound alternatives, should I discuss the design here?

    First, key domain entities:
    Event: Raw info, submited by agent from...
  13. Is it possible to retry or redo a rollbacked transaction

    Dear Devs and users,

    With spring declarative transaction, is it possible to perform
    some customized operation on transaction rollback?

    I'm developing a system which have high amount of input...
Results 1 to 13 of 13