介绍:
spring+springmvc+mybatis+mysql+eclipse。
截图:
数据库表:
CREATE TABLE centeraddress
(cid
int(11) NOT NULL AUTO_INCREMENT COMMENT ‘中间id’,centerAddress
varchar(255) DEFAULT NULL COMMENT ‘中间站点名’,distance
double DEFAULT NULL COMMENT ‘距离’,cTime
varchar(255) DEFAULT NULL COMMENT ‘距离下一站时间’,rid
int(11) DEFAULT NULL COMMENT ‘总路线id’,
PRIMARY KEY (cid
),
KEY FK_centeraddress
(centerAddress
)