protected AvatarBase avatarBase;
public String index() throws IOException {
String userName = getUsername();
Avatar avatar = avatarBase.getAvatar(userName);
if (null == avatar) {
ServletActionContext.getResponse().getWriter().write("without you avatar [" + userName + "]");
} else {
AvatarUtil.copyTo(avatar, ServletActionContext.getResponse());
}