Code:
MyBean bean = new MyBean(categoryForm, PriceForm);
request.setAttribute("valid", bean);
System.out.println(bean);
List vids =MyBean.getVideos(categoryForm, PriceForm);
Code:
symbol : class List
location: class MySite.Valid
List vids = MyBean.getVideos(categoryForm, PriceForm);
^
MySite/Valid.java:56: non-static method getVideo(java.lang.String,java.la
ng.String) cannot be referenced from a static context
List vids = MyBean.getVideos(categoryForm, PriceForm);
^
2 errors
Comment