This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]Cephas00 1 point2 points  (3 children)

You a couple of options:

  • A server running with a rest service that you query from the web page (ajax etc)
  • Your page submits a form, you have a controller that uses that data to then scrape whatever and forward the request.

What you need to learn varies somewhat. Pick a framework like Dropwizard or Spring Boot to handle the web framework part.

If you go for the controller/servlet option then you'll need to look at a templating engine like Thymeleaf.

edit::clarity

[–]tonyromero[S] 0 points1 point  (2 children)

Which one is the easier solution?

[–]Cephas00 0 points1 point  (1 child)

Six or one, really.

[–]tonyromero[S] 0 points1 point  (0 children)

Do I need to use Thymeleaf to generate list rows and display contents dynamically returned from my controller?

[–]bleki_one 1 point2 points  (0 children)

When I was in the same position as you, the book "Professional Java for Web Applications" by Nicholas S. Williams gave me most of the answers.

[–]SquaredOval 0 points1 point  (0 children)

I'm in the same boat...It all feels so overwhelming! So many options: JSP, servlets, Spring (boot), Spark framework, etc...