Struts-Hibernate-Integration

所属分类:Java编程
开发工具:Java
文件大小:12068KB
下载次数:36
上传日期:2007-07-20 21:32:56
上 传 者lwhsyit
说明:  印度高手Struts and Hibernate教程,用MyEclipse开发.书和源码In this tutorial we will show how the Web Framework Struts and the Database Persistence Solution Hibernate can be used together. Though we explain some basic, you should try the basic tutorials for each technology first when you are a beginner.

文件列表:
Struts-Hibernate-Integration (0, 2006-07-12)
struts-hibernate-integration-tutorial-en.pdf (556675, 2006-06-21)
Struts-Hibernate-Integration\code (0, 2006-07-12)
Struts-Hibernate-Integration\code\index.jsp (131, 2006-08-02)
Struts-Hibernate-Integration\code\META-INF (0, 2006-07-12)
Struts-Hibernate-Integration\code\META-INF\MANIFEST.MF (106, 2006-03-09)
Struts-Hibernate-Integration\code\pages (0, 2006-08-07)
Struts-Hibernate-Integration\code\pages\SearchResultPage.jsp (766, 2006-08-05)
Struts-Hibernate-Integration\code\pages\SearchTutorial.jsp (746, 2006-07-14)
Struts-Hibernate-Integration\code\pages\Welcome.jsp (657, 2006-03-09)
Struts-Hibernate-Integration\code\WEB-INF (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\hibernate.cfg.xml (989, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\MessageResources.properties (1532, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\dao (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\dao\hibernate (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\dao\hibernate\Tutorial.class (911, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\dao\hibernate\Tutorial.hbm.xml (982, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\plugin (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\net\plugin\HibernatePlugIn.class (2201, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\web (0, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\web\SearchTutorialAction.class (2215, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\classes\roseindia\web\SearchTutorialActionForm.class (960, 2006-08-07)
Struts-Hibernate-Integration\code\WEB-INF\doc (0, 2006-07-12)
Struts-Hibernate-Integration\code\WEB-INF\doc\api (0, 2006-07-12)
Struts-Hibernate-Integration\code\WEB-INF\lib (0, 2006-07-12)
Struts-Hibernate-Integration\code\WEB-INF\libext (0, 2006-07-12)
Struts-Hibernate-Integration\code\WEB-INF\libext\jdbc2_0-stdext.jar (6727, 2006-03-22)
Struts-Hibernate-Integration\code\WEB-INF\libext\servlet-api.jar (97701, 2005-09-23)
Struts-Hibernate-Integration\code\WEB-INF\lib\ant-1.6.5.jar (1034049, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\ant-antlr-1.6.5.jar (5667, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\ant-junit-1.6.5.jar (74237, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\ant-launcher-1.6.5.jar (9180, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\ant-swing-1.6.5.jar (6763, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\antlr-2.7.6rc1.jar (444689, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\antlr.jar (358273, 2006-03-09)
Struts-Hibernate-Integration\code\WEB-INF\lib\asm-attrs.jar (16777, 2006-01-18)
Struts-Hibernate-Integration\code\WEB-INF\lib\asm.jar (26360, 2006-01-18)
... ...

Quick-Start FAQ =============== What's Struts Blank? - It's an "empty" application provided to help you get started on your own project. Just copy the struts-blank.war to a new WAR file using the name for your application. Place it in your container's "webapp" folder (or equivalent), and let your container auto-deploy the application. Edit the skeleton configuration files as needed, restart your container, and you are on your way! (You can find the application.properties file with this message in the /WEB-INF/src/java/resources folder.) Where do I put my own code? - The build file is setup so that you can place your own packages anywhere under the WEB-INF/src directory. What are the references to /javasoft/lib in the build.xml about? - Most Struts applications use some common JAR files. This is one common location for these on a development computer, but another may be used What targets does the build file accept? - "clean" to delete the old class, resource, and configuration files. - "compile" to rebuild the Java class files and copy over the resource and configuration files. - "project" to also generate the Javadoc. - "dist" to create a binary distribution. - "all" for a clean rebuild the project and binary distributions. Where are the binary distributions placed? - By default, under /projects/lib on your default drive. You can change these through the "distpath.project" variable in the build file. Where's the Message Resources (fka Application Resources)? - It's named MessageResources.properties. The original is under WEB-INF/src/java/. The resource bundle is copied under classes during a build. Why did the changes to my classes/MessageResources.properties or other resource file disappear? Why didn't the changes to my java/MessageResources.properties or other resource file appear? - The original resource files are under WEB-INF/src/java and copied under classes during a build. Change the WEB-INF/src/java versions and rebuild before redeploying. ###

近期下载者

相关文件


收藏者