request.setAttribute("mes",yourMessage)
request.getRequestDispatcher("YourJspURL").forward(request, response)
然后在相应jsp里面获取属性输出:
<%=request.getAttribute("mes")%>
传不上去。文字太多。我把代码写到博客上了,你到博客看吧。
http://jie2workjava.javaeye.com/blog/759369
jsp+servlet
查询语句
select * from user where birthday=( select curdate() )下面是生成表的SQL
-- phpMyAdmin SQL Dump-- version 2.11.8.2
-- http://www.phpmyadmim.net
--
-- 主机: 127.0.0.1:3306
-- 生成日期: 1990 年 06 月 02 日 16:39
-- 服务器版本: 5.1.35
-- PHP 版本: 5.2.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"
--
-- 数据库: `mydb3`
--
-- --------------------------------------------------------
--
-- 表的结构 `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(20) NOT NULL,
`password` varchar(6) NOT NULL,
`birthday` date NOT NULL,
`salary` float DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5
--
-- 导出表中的数据 `user`
--
INSERT INTO `user` (`id`, `username`, `password`, `birthday`, `salary`) VALUES
(1, '杰克', '123456', '2001-06-05', 5000),
(2, 'jack', '654321', '1991-06-05', 6000),
(3, 'Dany', '111000', '2014-06-02', 5000),
(4, 'Danp', '111000', '2014-06-02', 5000)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)