摘要:
一、通过ActionContext类获取 public class ActionContextDemo extends ActionSupport { @Override public String execute() throws Exception { //获取ActionContext对象 A 阅读全文
摘要:
1.Hibernate中的多表查询 1.1SQL中的多表查询 【交叉连接】 select * from A,B; 【内连接】 显示内连接:inner join(inner 可以省略) Select * from A inner join B on 条件; 隐式内连接: Select * from A 阅读全文