Search:

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

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    1,221

    For example you may make your bean implement...

    For example you may make your bean implement ApplicationContextAware.
    This way you will get reference to the ApplicationContext that created your bean.
  2. Replies
    0
    Views
    839

    CXF reliability in production

    Sorry folks to ask the question here, normally I would search the forums first,
    but the name 'CXF' is too short!

    Does anybody here uses Apache CXF in production? I am considering different WS...
  3. Replies
    4
    Views
    1,476

    Did you try profiling the application?

    Did you try profiling the application?
  4. Replies
    14
    Views
    3,013

    The idea is nice, but tell me: why do I have to...

    The idea is nice, but tell me: why do I have to call a phone number to hear anything? That is just plain stupid, especially if you are outside US.
  5. Replies
    4
    Views
    3,944

    Good work Spring Team! I am impatiently awaiting...

    Good work Spring Team! I am impatiently awaiting the production-ready 2.5 release. Wish you best with your efforts.
  6. Replies
    7
    Views
    1,465

    He is. Hence the reference to the employee...

    He is. Hence the reference to the employee (employeeId).
  7. Replies
    7
    Views
    1,465

    Okay, maybe I should restate what I wanted to...

    Okay, maybe I should restate what I wanted to say.
    The supervisor is not a separate entity in the sense, that it means nothing without employee. The employeeId points to the employee which has, ...
  8. Replies
    7
    Views
    1,465

    What is this pattern?

    This is a little bit offtopic but please tell what you think if you have time to read this.

    Assume we have an employee:



    class Employee {
    private int id;
    private String email;
    ...
  9. Replies
    14
    Views
    2,653

    See the compatibility matrix on hibernate page....

    See the compatibility matrix on hibernate page. Then download the jars. It has to work, in my case it was I who made the mistake.
  10. Replies
    14
    Views
    3,105

    Enable debug logging in Spring and check if the...

    Enable debug logging in Spring and check if the transaction manager works as you intended. You should see transaction manager log entries. I haven't used
    toplink but try to enable their logging...
  11. Replies
    1
    Views
    2,147

    Yes, it's a known problem and a royal pain in the...

    Yes, it's a known problem and a royal pain in the ass. Exactly the same happened to me in JBoss. I think it is possible to solve it, google on endorsed library mechanism, cause I don't remember any...
  12. Replies
    14
    Views
    3,105

    Fine, but what error you get when trying to...

    Fine, but what error you get when trying to persist an object?
  13. Replies
    14
    Views
    3,105

    Please, provide more information: code, mappings,...

    Please, provide more information: code, mappings, log file, exceptions etc.
  14. RC-like framework with Spring as backend

    Hi,

    I am looking for the possibly painless way to design the web frontend
    for the moderatly complex application which will be used internally by our company. Normally I would consider employing...
  15. Replies
    2
    Views
    676

    Reusing C/V for adding/editing

    Hi folks,

    I'm looking for a 'good practice' for reusing the same Controller / View for both adding and editing the domain object.

    Let's say our object of interest is an employee. We need a way...
  16. Replies
    5
    Views
    1,077

    Thanks for pointing this out. I'll check the...

    Thanks for pointing this out. I'll check the PropertyEditorRegistrar right away.
  17. Replies
    5
    Views
    1,077

    It's nice, however still you don't avoid the...

    It's nice, however still you don't avoid the boilerplate, since you have to define it for each field inside each controller (correct me if I'm wrong)
  18. Replies
    5
    Views
    1,077

    HTML escaping for form fields

    Hi,

    I've been thinking of a generic way to enable HTML escaping for the String fields of Command Objects. What I'm trying to achieve is to avoid all the boilerplate code stripping HTML tags after...
  19. Replies
    0
    Views
    679

    Expose all bind errors

    I need to display a summary of ALL the form binding errors (not all the errors for the particular field). How to do this using Freemarker? I've been struggling with this for a while. Thanks in advance
  20. One additional question popped into my mind: ...

    One additional question popped into my mind:
    Since my PropertyEditor uses EntityManager it should be defined as Spring bean.

    But isn't that the case that then this implementation will not be...
  21. Thanks! That solves the problem.

    Thanks! That solves the problem.
  22. Sorry for misunderstanding. Actually, the person...

    Sorry for misunderstanding. Actually, the person who adds a new employee is responsible for putting the employee in the initial group which can be chosen from the list of existing groups. So I can't...
  23. Employee is an Entity in JPA sense which has an...

    Employee is an Entity in JPA sense which has an associated groups he or she belongs to:


    @ManyToMany
    private List <Group> groups;


    Now I want to be able to assign an initial group to the...
  24. Transform CO into Domain Object: Web or Service?

    Suppose you have a service method: EmployeeService.add(Employee emp);
    Now let's imagine you have just obtained an EmployeeCO command object from the web form via the controller and you are ready to...
  25. Replies
    8
    Views
    1,460

    Speaking about security, you might want to...

    Speaking about security, you might want to consider Seraph. It does not integrate with Spring as Acegi does, but AFAIK is more lightweight.
Results 1 to 25 of 92
Page 1 of 4 1 2 3 4