Adnan
Adnan

Reputation: 4607

debugging richfaces/jsf project

can anyone please tell me method to debug richfaces or jsf project? thanks in advance.

Upvotes: 2

Views: 1947

Answers (2)

Matt Handy
Matt Handy

Reputation: 30025

Debugging jsf projects involves server side and client side debugging.

For server side debugging I go along with Bozho's answer.

For the client side I recommend Chrome's developer tools (integrated) or the Firebug add-on for Firefox.

Upvotes: 1

Bozho
Bozho

Reputation: 597402

  • add Tomcat (or whatever container you are using) in your Servets in eclipse (or whatever IDE you are using)
  • start the server in debug mode and deploy the application
  • put a breakpoint in your controller methods.

Upvotes: 5

Related Questions