Posts by Fulvius • 174 points
3 posts
-
0
votes1
answer59
viewsA: What is the easiest way to make a slide with Bootstrap?
maybe this script will serve as a starting point: $(function () { $('#homeCarousel').carousel({ interval:2000, pause: "false" }); $('#playButton').click(function () {…
-
1
votes2
answers313
viewsA: Error running Java program - Mapping Servlet Web.xml
Maybe there’s a mix-up with the name of the project (ManipuladorSQL), q becomes a context in Tomcat, and Servlet (also ManipuladorSQL) you registered on web.xml. Anyway, change this entry to web.xml…
-
1
votes1
answer467
viewsA: Persist JPA object array
Possibly the thing gets messy when you try to iterate the result of the testPlan.getParams call method() . take off the testPlan.getParams() from within the for ...…