[color=red]尽量不要放在execute方法里面[/color]
public String test() {
try {
name = "Happy";
} catch (ResourceNotFoundException e) {
e.printStackTrace();
} catch (ParseErrorException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return "test";
}