Search:

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

Search: Search took 0.03 seconds.

  1. @RequestMapping with params is not matching

    I have several @RequestMapping that could potentially match several URLs but I specifically want one controller to map based on a similar URL + params. When stepping through the code for Spring 3.1...
  2. What we've done is created an additional...

    What we've done is created an additional ControllerContext class that takes in the request and response and is initialized in every controller to set common request attributes, however this has...
  3. Replies
    3
    Views
    1,461

    That worked! Thank you. I ended up doing the...

    That worked! Thank you. I ended up doing the following


    @Autowired
    private RoleHierarchy roleHierarchy;

    // ...

    private void clientTaskDtoToClientTask(ClientTask clientTaskToUpdate,...
  4. Replies
    3
    Views
    1,461

    RoleHierarchy in GrantedAuthorities

    I'm using Spring Security 3.0.4.RELEASE and I'm trying to figure out if RoleHierarchy can be used when simply looping through granted Authorities. Below is my config:


    <beans:bean...
  5. Displaying links to urls that only a user has access to

    Hello! We are currently in the process of securing our site that uses Spring MVC, jsps, and Spring Security 3.0.3 so that users can only see links to URLs that they have access to via roles. ...
  6. Replies
    9
    Views
    6,220

    I am having the same issue and it seems there is...

    I am having the same issue and it seems there is very little documentation on this. Is no one out there trying to accomplish bulk updating?
  7. Replies
    10
    Views
    2,355

    Well if I wanted to create a UserDao that access...

    Well if I wanted to create a UserDao that access Ldap users to call findAllUsers() would it be easier to have an implementation that uses LdapTemplate or should I be using Spring Ldap? If I...
  8. Replies
    10
    Views
    2,355

    Is LdapTemplate the old way of connecting to Ldap...

    Is LdapTemplate the old way of connecting to Ldap with Spring? I'm currently setting up security and I used LdapTemplate but I'm not sure if I even need to use it. I need to integrate Spring...
  9. Replies
    16
    Views
    2,217

    I believe I have resolved this issue. It was...

    I believe I have resolved this issue. It was caused by an incorrect mappedBy property in my @ManyToMany and @OneToOne annotations. My Fund class does not have "clientId" as private variable, rather...
  10. Replies
    16
    Views
    2,217

    Fund /* * To change this template, choose...

    Fund


    /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    */

    package com.mycompany.mis.Domain;
  11. Replies
    16
    Views
    2,217

    I don't have @RooEntity on the Fund class.. could...

    I don't have @RooEntity on the Fund class.. could that be an issue?


    Client


    package com.mycompany.mis.Domain;

    import java.io.Serializable;
    import javax.persistence.Basic;
  12. Replies
    16
    Views
    2,217

    I'm getting the same error as the original post...

    I'm getting the same error as the original post and I'm not using any enums. The error reads "Could not determine the plural name for the 'fund' field in Client" So I put @RooPlural(value="funds")...
Results 1 to 12 of 12