Skip to content

JunTingLin/BookShop-NCU-SA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

NCU_BookShop

基於jsp+servlet的大學教課書商城

(後來有導入Spring IOC,詳細可參考下面系統架構)

註: 此專案並非一開始就使用版本控制

The website now is runing on Nas server

http://140.115.123.246:7070/

系統架構

image

image

系統功能清單

image

image

image

image

image

image

image

介面展示

首頁 image

全部類別 image

書本詳情 image

庫存不足 image

註冊 image

搜尋 image

購物車 image

提交訂單 image

我的訂單 image

後台-訂單管理 image

後台-書本管理 image

後台-科系管理 image

後台-會員管理 image

補充

maria_db資料庫

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
	<!-- 默認配置,只可以出現一次 -->
	<default-config>
		<property name="driverClass">org.mariadb.jdbc.Driver</property>
		<property name="jdbcUrl">
			<![CDATA[jdbc:mariadb://localhost:3306/bookshop?useUnicode=true&characterEncoding=UTF-8&useSSL=false]]>
		</property>
		<property name="user">root</property>
		<property name="password">root</property>
	</default-config>
</c3p0-config>

c3p0-config.xml


<dependency>
    <groupId>org.mariadb.jdbc</groupId>
    <artifactId>mariadb-java-client</artifactId>
    <version>3.1.2</version>
</dependency>

pox.xml (part)

mysql_db資料庫

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
	<!-- 默認配置,只可以出現一次 -->
	<default-config>
		<property name="driverClass">com.mysql.jdbc.Driver</property>
		<property name="jdbcUrl">
			<![CDATA[jdbc:mysql://localhost:3306/bookshop?useUnicode=true&characterEncoding=UTF-8&useSSL=false]]>
		</property>
		<property name="user">root</property>
		<property name="password">root</property>
	</default-config>
</c3p0-config>

c3p0-config.xml


<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.4</version>
</dependency>

pox.xml (part)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published