1 /** 2 * Copyright By Grandsoft Company Limited. 3 * 2012-9-10 下午03:59:10 4 */ 5 package gboat2.web.action; 6 7 import gboat2.base.core.annotation.Module; 8 import gboat2.base.core.web.BaseActionSupport; 9 10 import org.apache.struts2.convention.annotation.ResultPath; 11 12 13 /** 14 * 15 * @author lysming 16 * @since jdk1.6 17 * @date 2012-9-10 18 * 19 */ 20 @ResultPath("/content/blank") 21 @Module(name="建设中模块",desc="用于表示正在建设中的功能模块") 22 public class BlankAction extends BaseActionSupport { 23 public String execute(){ 24 return "execute"; 25 } 26 }