永发信息网

我想要一个Struts2 hibernate Spring 做的项目实例,,急

答案:4  悬赏:20  手机版
解决时间 2021-07-21 01:26
非常急
最佳答案

要代码吗?还是要一个将要做的建议呢?如果是建议的话,那你去做一个在线商店系统咯。。

全部回答

传智播客Java EE 视频教程

《传智播客AJAX视频教程》

《传智播客巴巴运动网》

《传智播客Struts视频教程》

《传智播客hibernate视频教程》

《传智播客spring2.5视频教程》

《传智播客在线支付视频教程》

《传智播客ibatis视频教程》

《传智播客jpa视频教程》

《传智播客FCKeditor教程》

《FTP服务器架设视频教程》

《传智播客JNI视频教程》

《OA+工作流视频》

《Oralce数据库视频教程》

《JDBC视频教程》

《EJB3.0视频教程》

传智播客张孝祥java系列,初学者推荐大家按照以下顺序学习整套教程:

《张孝祥java邮件开发》

《俄罗斯方块视频教程》->

《贪吃蛇游戏项目实战》->

《张孝祥java基础》->

《张孝祥java高级》->

《张孝祥javascript视频教程》->

《张孝祥javaweb视频教程》->

《张孝祥09年Struts视频》

《张孝祥2010年贺岁视频_Java高新技术》

我有个在线考试系统的实例SSH框架的。

1. 数据库脚本,数据库采用MySQL 5.0 CREATE TABLE `user` ( `id` int(11) NOT NULL auto_increment, `username` varchar(32) NOT NULL, `password` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 2. 几个重要的文件 web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="[url= http://java.sun.com/xml/ns/javaee] http://java.sun.com/xml/ns/javaee[/url]" xmlns:xsi="[url= http://www.w3.org/2001/XMLSchema-instance] http://www.w3.org/2001/XMLSchema-instance[/url]" xsi:schemaLocation="[url= http://java.sun.com/xml/ns/javaee] http://java.sun.com/xml/ns/javaee[/url] [url= http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd] http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd[/url]"> <!-- spring的应用上下文 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml</param-value> </context-param> <!-- struts2 过滤器 --> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- spring的监听器,以便在启动时就自动加载spring的配置 --> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- OpenSessionInViewFilter过滤器 --> <filter> <filter-name>lazyLoadingFilter</filter-name> <filter-class> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter </filter-class> </filter> <filter-mapping> <filter-name>lazyLoadingFilter</filter-name> <url-pattern>*.action</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>/user/userAdd.jsp</welcome-file> </welcome-file-list> </web-app> <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="[url= http://java.sun.com/xml/ns/javaee] http://java.sun.com/xml/ns/javaee[/url]" xmlns:xsi="[url= http://www.w3.org/2001/XMLSchema-instance] http://www.w3.org/2001/XMLSchema-instance[/url]" xsi:schemaLocation="[url= http://java.sun.com/xml/ns/javaee] http://java.sun.com/xml/ns/javaee[/url] [url= http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd] http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd[/url]"> <!-- spring的应用上下文 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml</param-value> </context-param> <!-- struts2 过滤器 --> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- spring的监听器,以便在启动时就自动加载spring的配置 --> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- OpenSessionInViewFilter过滤器 --> <filter> <filter-name>lazyLoadingFilter</filter-name> <filter-class> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter </filter-class> </filter> <filter-mapping> <filter-name>lazyLoadingFilter</filter-name> <url-pattern>*.action</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>/user/userAdd.jsp</welcome-file> </welcome-file-list> </web-app> applicationContext.xml Java代码 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="[url= http://www.springframework.org/schema/beans] http://www.springframework.org/schema/beans[/url]" xmlns:xsi="[url= http://www.w3.org/2001/XMLSchema-instance] http://www.w3.org/2001/XMLSchema-instance[/url]" xsi:schemaLocation="[url= http://www.springframework.org/schema/beans] http://www.springframework.org/schema/beans[/url] [url= http://www.springframework.org/schema/beans/spring-beans-2.0.xsd] http://www.springframework.org/schema/beans/spring-beans-2.0.xsd[/url]">

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"> </property> <property name="url" value="jdbc:mysql://localhost:3306/catalog"> </property> <property name="username" value="root"></property> <property name="password" value="ethip"></property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> </props> </property> <property name="mappingResources"> <list> <value>org/ethip/catalog/model/User.hbm.xml</value> </list> </property> </bean> <bean id="UserDAO" class="org.ethip.catalog.dao.UserDAO"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <bean id="UserService" class="org.ethip.catalog.service.UserService"> <property name="dao"> <ref bean="UserDAO" /> </property> </bean> <bean name="addUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="listUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="deleteUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="editUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="updateUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> </beans> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="[url= http://www.springframework.org/schema/beans] http://www.springframework.org/schema/beans[/url]" xmlns:xsi="[url= http://www.w3.org/2001/XMLSchema-instance] http://www.w3.org/2001/XMLSchema-instance[/url]" xsi:schemaLocation="[url= http://www.springframework.org/schema/beans] http://www.springframework.org/schema/beans[/url] [url= http://www.springframework.org/schema/beans/spring-beans-2.0.xsd] http://www.springframework.org/schema/beans/spring-beans-2.0.xsd[/url]"> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"> </property> <property name="url" value="jdbc:mysql://localhost:3306/catalog"> </property> <property name="username" value="root"></property> <property name="password" value="ethip"></property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> </props> </property> <property name="mappingResources"> <list> <value>org/ethip/catalog/model/User.hbm.xml</value> </list> </property> </bean> <bean id="UserDAO" class="org.ethip.catalog.dao.UserDAO">

<property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <bean id="UserService" class="org.ethip.catalog.service.UserService"> <property name="dao"> <ref bean="UserDAO" /> </property> </bean> <bean name="addUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="listUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="deleteUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="editUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> <bean name="updateUserBean" class="org.ethip.catalog.web.UserAction" scope="prototype"> <property name="service"> <ref bean="UserService" /> </property> </bean> </beans> struts.xml Java代码 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "[url= http://struts.apache.org/dtds/struts-2.0.dtd] http://struts.apache.org/dtds/struts-2.0.dtd[/url]"> <struts> <include file="struts-default.xml" /> <!-- 此constant设置临时文件存放目录,因为默认的default.properties中没有指定 --> <constant name="struts.multipart.saveDir" value="c:\"></constant> <!-- 将action托管给spring --> <constant name="struts.objectFactory" value="spring"></constant> <package name="SSH2" extends="struts-default"> <action name="userAdd" class="addUserBean" method="userAdd"> <result name="success" type="redirect">userList.action</result> </action> <action name="userList" class="listUserBean" method="userList"> <result name="success">/user/userList.jsp</result> </action> <action name="userDelete" class="deleteUserBean" method="userDelete"> <result name="success" type="redirect">userList.action</result> </action> <action name="userEdit" class="editUserBean" method="userEdit"> <result name="success">/user/userEdit.jsp</result> </action> <action name="userUpdate" class="updateUserBean" method="userUpdate"> <result name="success" type="redirect">userList.action</result> </action> </package> </struts> 3. 本实例仅实现CRUD功能,没有实现其他的处理,如数据校验、国际化、分页等. 4. 由于附件过大,lib下所有的jar都删掉了,请各位学习者按照上一文的操作导入。

我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
生命是偶然还是必然
人和心分开了怎么办
QQ农场什么处理使用外挂的人,让他们偷不得
爱护公司财物的句子,描述建筑的句子
月经后的四到六天会怀孕吗??
N97行货水货怎么区别
600569最高价是好多?
‘日’字加一笔,看你能加几个。
同志们电视上的猜谜游戏,让观众猜答案的得现
君子不立危墙下一句,君子坦荡荡的下一句是什
黄金钥匙怎么送
cos(A+B)=
现在大话2什么种族法满转生比较好?
某可燃物4.6g在足量的氧气中充分燃烧,生成8.
博尔特能跑多快
推荐资讯
QQ三国15级情侣要多久才能删除。还有一套70XS
为什么在网上看的发型教程视频,他用的发蜡是
跟盆栽有关的句子,盆栽桔子树的种植方法
游戏蓝屏怎么回事?
安卓手机怎么屏蔽广告,安卓手机怎样进行设置
帮我选个手机
用英语翻译下面的单词:绿色、黄色、黑色、紫
湖滨区三门峡启航幼儿园我想知道这个在什么地
小草屋家常菜馆我想知道这个在什么地方
襄城区襄樊诚信旅社怎么去啊,谁知道地址啊
自己的垃圾自己倒,不要人家帮你倒用英语怎么
神农架林区神农架湖北广电网络木鱼镇营业所地
正方形一边上任一点到这个正方形两条对角线的
阴历怎么看 ?