
ssm
西八没天台
这个作者很懒,什么都没留下…
展开
-
ssm通讯录管理系统--1
程序结构 数据库结构 相关配置信息 springContext.xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http:原创 2017-06-09 21:25:10 · 1878 阅读 · 1 评论 -
ssm通讯录管理系统--2
用户方面 user.java package com.ssm.domain; import java.util.ArrayList; import java.util.List; public class User { public int id; private String username; private String password;原创 2017-06-09 21:34:52 · 902 阅读 · 0 评论 -
ssm通讯录管理系统--3
通讯录方面 contact.java package com.ssm.domain; public class Contact { private Integer t_id; private Integer t_age; private String t_name; private String t_phone; private String t_school; pr原创 2017-06-12 10:30:44 · 2363 阅读 · 2 评论 -
ssm通讯录管理系统--4
jsp方面 getAll.jsp <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> table {bo原创 2017-06-12 10:37:25 · 1185 阅读 · 0 评论