软件工程综合实践阶段小结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了软件工程综合实践阶段小结相关的知识,希望对你有一定的参考价值。
这两天,在企业导师的指导下,我们基于springmvc+mybatis+spring再次建立了之前的网站(但没有连接数据库)。
可以发现,结构比之前简单了许多,事实上代码量也小了很多。
首先在pojo包内黏贴了之前建立的Userinfo实体类,用于记录和接受用户信息
然后完成了springmvc.xml的配置,具体内容如下
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
<!-- 配置Controller -->
<bean id="UsersController1" name="/users.action" class="cn.neusoft.controller.UsersController1"></bean>
<!-- 项目中一般使用 扫描包的方式 进行 配置 -->
<context:component-scan base-package="cn.neusoft.controller"></context:component-scan>
<!-- 实际开发中使用 加载注解的 适配器、映射器 、 Json转换器 -->
<mvc:annotation-driven></mvc:annotation-driven>
<!-- 非注解的 映射器 以及 适配器 -->
<!-- 配置处理器映射器 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
<!-- 配置处理器适配器 -->
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"></bean>
<!-- 另外一个适配器 -->
<bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter"></bean>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 配置jsp 页面的前缀 -->
<property name="prefix" value="/WEB-INF/jsp"></property>
<!-- 配置后缀 -->
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
然后在controller包中使用模拟的数据库完成率值的传递
然后仿照之前的内容完成了user.jsp和user2.jsp两个网页的设计
运行结果
以上是关于软件工程综合实践阶段小结的主要内容,如果未能解决你的问题,请参考以下文章