s file contains the Joone Distributed training Environment (DTE). See http://www.jooneworld.com/docs/dte.html to learn more about it. To learn more about Joone - Java Object Oriented Neural Engine: http://www.joone.org Joone and the DTE are both released with the LGPL license @2004 Paolo Marrone and the Joone team - All rights reserved ==================================================================== Credits The Joone DTE uses the following external packages: - SUN Jini Network Technology http://wwws.sun.com/software/jini/index.html - Computefarm Framework http://computefarm.jini.org - Spring Framework http://www.SpringFramework.org We want to thank all the authors and contributors of the above packages. Please read the respective licenses contained in this distribution.
标签: Distributed Environment jooneworld contains
上传时间: 2013-12-25
上传用户:钓鳌牧马
Spring源代码,开源的src\org\SpringFramework\web\multipart\MultipartFile.java MVC上传文件
标签: srcorgSpringFrameworkwebmultipart MultipartFile Spring java
上传时间: 2013-12-23
上传用户:417313137
springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认: l <bean class="org.SpringFramework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是说:上面这个定义和不定义都是一样的。 不定义: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> 直接使用:hello.do来访问。 <!-- 简单的url映射处理器 --> l <bean class="org.SpringFramework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> 那么上面的这个映射配置:表示多个*.do文件可以访问多个Controller或者一个Controller。 前提是:都必须依赖: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> <!-- /WEB-INF/jsp/index.jsp --> <bean class="org.SpringFramework.web.servl <prop key="/hello1.do">testController</prop> <prop key="/a.do">testController</prop> </props> </property> </bean> et.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"></property> <property name="suffix" value=".jsp"></property> </bean>
标签: SpringMVC
上传时间: 2016-06-03
上传用户:hthunder