Hi bdangubic,
Thank you for the reply.
I corrected the pointcut, but nothing has changed.
Maybe it's my controller definition that it's incorrect?
The controller is as follow:
package it.esel.ge.controllers;
import java.util.HashMap;
...
import it.esel.ge.utilita.constants.Constants;
public class RicercaController extends AWController {
private final static String QUERY_INFO_MESSAGE = "Query ricerca dati: ";
private ProfiloRicerca profiloRicerca;
private String ricercaLike = null;
private String colonnaOrderBy = null;
private IJoinsService tableJoinsService;
/*
* Riccardo Forafò
* Mar 7, 2008
*
* (non-Javadoc)
* @see it.esel.ge.controllers.base.AWController#handleReq uest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
*/
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
Map<Object, Object> model = new HashMap<Object, Object>();
ModelAndView modelAndView = null;
String ricerca = request.getParameter(getProperty("pagina.utente.cr iteri.ricerca.namePulsanteRicerca"));
...
and it's extend the AWController class:
public class AWController extends ApplicationObjectSupport implements Controller {
protected static ReloadableResourceBundleMessageSource propertiesRepository;
protected static MessageSource staticPropertiesRepository;
...
protected String sortProperty;
protected boolean sortIgnoreCase;
protected boolean sortAscending;
public AWController() {
super();
}
public void setPropertiesRepository(ReloadableResourceBundleMe ssageSource propertiesRepository) {
AWController.propertiesRepository = propertiesRepository;
}
...
Best regards,
Riccardo.