출처 : http://www.tutcity.com/view/struts-2-modeldriven-action-example.18734.html

뭔가 했더니 jsp에서 user.name 이런 식으로 접근하던 것을 name 만으로 직접 접근 가능하게 해주는 것이었다...

액션 클래스에 implements ModelDriven 를 하고,

public Object getModel() {
      return user;
}

만 추가하면 됨.