Hi everybody.
I built a browsable operator interface by means of the following:
on server side, Hibernate 3 to access an Oracle database, and BlazeDS to remote some objects (developed with JDK 1.6);
on client side, a single SWF file developed by Flex 3.2.
The client talks to remote objects, which in turn call Hibernate beans.
I put the application (which consists of a single WAR) under Spring 2.5.6.SEC01 control.
The web and app server is Tomcat 6.
The operating system is Windows, both XP and 7, professional.
I declare DispatcherServlet in web.xml:
My application needs the following JAR list:Code:<servlet> <servlet-name>flex</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet>
backport-util-concurrent,
commons-collections,
commons-dbcp,
commons-logging,
commons-pool,
dom4j-1.6.1,
flex-messaging-common,
flex-messaging-core,
flex-messaging-opt,
hibernate-annotations,
hibernate-commons-annotations,
hibernate3,
javassist-3.4.GA,
jta,
ojdbc6,
org.springframework.flex-1.0.2.RELEASE,
persistence,
slf4j-api-1.5.0,
slf4j-simple-1.5.0,
spring-beans,
spring-context,
spring-core,
spring-jdbc,
spring-orm,
spring-tx,
spring-web
Beside these JARs, there are only Tomcat/lib JARs (catalina.jar etc) and JRE 1.6 runtime.
Now, DispatcherServlet class belongs to spring-webmvc jar.
But I don't include it !
I've thoroughly controlled classpath application: there are no clues about spring-webmvc inclusion !
Nonetheless, my application works fine.
My question is: HOW can it be ?
William


Reply With Quote