Author | Message |
---|---|
msargent
Posts: 519
|
Posted 11:47 Feb 08, 2013 |
Anyone have a suggestion for part 3? I placed my DrivingTest bean in the package 'driving.' When I run my DrivingTest.jsp I get the above error. Here's my usebean <jsp:useBean id="test" class="driving.DrivingTest" scope="session" /> No errors are visible in Ecplise in the jsp source page. Thanks |
msargent
Posts: 519
|
Posted 11:59 Feb 08, 2013 |
Found an answer on StackOverflow -- make sure there is a 'public' in front of the constructor in DrivingTest; it has to be public. |