В приложении Struts 1 есть класс CommonAction, который наследуется от org.apache.struts.actions .DispatchAction.
Код: Выделить всё
public class CommonAction extends DispatchAction
Код: Выделить всё
public class ManageProfilesAction extends CommonAction
Теперь используется Struts 2 подход, я объявил CommonAction и ManageProfilesAction как
Код: Выделить всё
public class CommonAction implements ServletRequestAware, ModelDriven
Подробнее здесь: [url]https://stackoverflow.com/questions/47978520/the-bounded-wildcard-gives-a-error-using-modeldriven-in-struts-2[/url]