摘要: 一、使用servlet实现 index.jsp: servlet: 二、基于注解(SpringBoot)实现 index.jsp controller 此处需注意controller返回值是String的话,返回并不是json格式,浏览器的Response返回值但该值不会alert出来。 详细参考: 阅读全文
posted @ 2019-05-19 11:52 HungryHenry 阅读(250) 评论(0) 推荐(0)
摘要: 如图,基于一张表(test01)筛选有相同数据的指定的列(a、b)。 select * from test01 t where ( select count(1) from test01 where a = t.a and b = t.b)>1 结果: 阅读全文
posted @ 2019-05-09 20:15 HungryHenry 阅读(906) 评论(0) 推荐(0)