扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
public String execute_view()throws Exception{
Map user = null;
String objectid = (String)model.get("objectid");
String sql = "select * from t_user where id='"+objectid+"'";
conn = DBUtil.getConn();
user = DBUtil.queryOne(conn,sql,null);
//sql = "select * from t_user where id=?"
//user = DBUtil.queryOne(conn,sql,new Object[]{objectid});
if(user==null){
return "no_object";
}
model.put("user",user);
return "view";
}
public String execute_update()throws Exception{
String table = "t_user";
String cols = "id,name,hh,ww,birth_day";
int autoPK = 1;//主键是否自增 ,max(id)+1
conn = DBUtil.getConn();
DBUtil.updateRow(conn,table,cols,1,model);
return "!query";
}
public String execute_delete()throws Exception{
String sql = "delete from t_user where id ";
DBUtil.batchDelById(sql,request);
return "!query";
}
private void createTable(){
String sql = null;
sql = "create table t_user(id int primary key,name varchar(50),hh numeric(8,3),ww numeric(8,3),birth_day datetime)";
try{
DBUtil.update(sql,null,request);
}catch(Exception e){}
}
}
//--------------------配置文件ajf.xml
<ajf>
<view name="error">/pages/commons/error.jsp</view>
<view name="home">/pages/commons/ajf_home.jsp</view>
<view name="no_object">/pages/commons/no_object.jsp</view>
<action name="/pages/user/user" class="com.zjuee.action.UserAction">
<view name="query">user.do</view>
<view name="q">user_query.jsp</view>
<view name="input">user_input.jsp</view>
<view name="edit">user_edit.jsp</view>
<view name="view">user_view.jsp</view>
</action>
<action name="/pages/user/x" forward="/pages/user/user.do"/>
<action name="/xx" forward="!/pages/user/user.do"/>
</ajf>
enjoy!
giscat 20061121
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者