Internet Shop in Ajax: Difference between revisions

From Elvanör's Technical Wiki
Jump to navigation Jump to search
Line 7: Line 7:
* The following libraries (JAR files) are needed (place them in WEB-INF/lib in your webapp directory, or in the shared/lib directory):
* The following libraries (JAR files) are needed (place them in WEB-INF/lib in your webapp directory, or in the shared/lib directory):
** GWT servlet library (gwt-servlet.jar)
** GWT servlet library (gwt-servlet.jar)
** Hibernate
** Hibernate library (hibernate3.jar)
** DOM4J library (dom4j.jar) 
** MySQL JDBC driver (jdbc-mysql.jar)


'''Important Note:''' Since they are JAR files, put them in lib/, not classes/ !
'''Important Note:''' Since they are JAR files, put them in lib/, not classes/ !

Revision as of 09:23, 15 March 2007

Ajax Shop Project.

Configuring Tomcat in order to deploy the web application

  • Logging must be configured through log4j. A sample log4j.properties file is present in the doc/ directory of the project.
  • The following libraries (JAR files) are needed (place them in WEB-INF/lib in your webapp directory, or in the shared/lib directory):
    • GWT servlet library (gwt-servlet.jar)
    • Hibernate library (hibernate3.jar)
    • DOM4J library (dom4j.jar)
    • MySQL JDBC driver (jdbc-mysql.jar)

Important Note: Since they are JAR files, put them in lib/, not classes/ !

SQL Tables

ShopItem

  • ID
  • ShopID
  • Price
  • Name
  • Auction / Sale
  • Image
  • Description
  • Status
  • DateEntered

ShopCategory

  • ShopID
  • Name
  • ID
  • Subcategory (boolean)