如题
编译时出现如下问题
java问题.PNG 源代码如下
package helloWorld;
import com.opensymphony.xwork.Action;
public class HelloWorld implements Action
{
private String greeting;
public String getGreeting()
{
return greeting;
}
public String execute() throws Exception
{
greeting = "Hello World!";
return SUCCESS;
}
}