MyServiceImpl myService = (MyServiceImpl) getApplicationContext().getBean("myService");
This code throws a ClassCastException: $Proxy17. Since the bean returned is a proxy and only implements...
Type: Posts; User: JamoSmith; Keyword(s):
MyServiceImpl myService = (MyServiceImpl) getApplicationContext().getBean("myService");
This code throws a ClassCastException: $Proxy17. Since the bean returned is a proxy and only implements...
You'll want to configure maven to use the new maven1 repositories:
maven.repo.remote=http://repository.atlassian.com,http://mirrors.ibiblio.org/pub/mirrors/maven,http://www.ibiblio.org/maven
...
Here is what got my tests to pass. I have a feeling it'll come back to haunt me though.
<dependency>
<artifactId>acegi-security</artifactId>
...
JasperReportsPdfView writes the pdf using response.getWriter(). I would recommend looking at the source of JasperReportsPdfView and JasperReportsUtils(org.springframework.ui.jasperreports). Also...