如果使用servlet+jdbc开发web程序,会有什么问题吗?、
我想用servlet+jdbc去写web程序
程序结构如下所示
这么写会出现什么问题吗
例如安全问题,性能问题
伪码如下
class EmpServlet{
EmpService empService = new EmpService();
doGet(){
//输入id查询emp对象
empService.queryEmp(id);
}
}
class EmpService{
EmpDao empDao = new EmpDao();
Emp queryEmp(id){
return empDao.queryEmp(id);
}
}
class EmpDao{
Jdbc jdbc = new Jdbc();
Emp queryEmp(id){
return jdbc.query(sql,id);
}
}