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...
Type: Posts; User: dukethrash; Keyword(s):
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...
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...
That worked! Thank you. I ended up doing the following
@Autowired
private RoleHierarchy roleHierarchy;
// ...
private void clientTaskDtoToClientTask(ClientTask clientTaskToUpdate,...
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...
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. ...
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?
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...
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...
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...
Fund
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.mycompany.mis.Domain;
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;
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")...