Hello,
I am trying to integrate spring into a jsf application.
In faces-config.xml I have included this:
<application>...
Type: Posts; User: Don Jonson; Keyword(s):
Hello,
I am trying to integrate spring into a jsf application.
In faces-config.xml I have included this:
<application>...
It's ok I figured this out.
The problem was with my index.jsp page. You can see from below that I was redirecting to a jsp page.
<%@ page contentType="text/html; charset=UTF-8" %>...
web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web...
Hello,
I am trying to use spring mvc and I have run into a few problems.
I am using spring-webmvc 2.5.2 and tomcat.
I am following a simple spring-mvc example from the Spring in Action book.
...
Thanks. I figured it out in the end. I also had to add:
spring-beans - 2.5.2
spring-webmvc - 2.5.2
spring-webflow - 1.0.5
spring - 2.5.2
Hello,
I am trying to use spring MVC using spring 2.5 and I am getting a java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet exception.
I can see from other...
Marten,
Thanks for your reply. I have fixed the problem. I was using an instance of BeanFactory when I should have been using an instance of ApplicationContext.
Hello,
I have created a very simple AOP example, based on an example I found in Spring in Action but I can't get the example to work.
I have 3 beans: HelloApp, GreetingServiceImpl and ALogger....