要求: 实现查询功能 1.数据库代码 create database mvce; use mvce; create table test2( id int not null identity, tname ) not null, tttype ) not null, tatt ) not null, tkfsname ) not null, tcity ) not null, taddress ) not null, tbeizhu ) not null, ) -----------------
条件查询 dao //根据搜索条件筛选数据 public List<User> GetUserBySearch(String userName, String sex) throws SQLException { String sql = "select * from User where 1=1 "; List<String> params = new ArrayList<String>(); if (userName != null &&
重定向: response.sendRedirect("地址"); a. 页面地址显示最终页面 b. 不可向后传递参数 c. 跳到外部站点 转发: request.getRequestDispatcher("地址").forward(request, response); a. 页面地址显示请求页面 b. 可以向后传递参数 c. 不可以跳到外部站点 造成区别的原因以