skip to Main Content

I have a legacy web application developed by Apache Wicket, and would like to know the possibility of implementing a new feature in this app using React.js, is that doable?

I started my research about that, but i found none useful so far.

Wicket version: 7 (to be upgraded to 9)

2

Answers


  1. Adding a new feature in a new page is totally OK! Just don’t use Wicket in the new .html file.

    Adding a new feature to an existing page managed by Wicket is possible but you may/will have unsync-ed state and this will cause you problems.

    Login or Signup to reply.
  2. Yes, it is possible to implement a new feature in a legacy web application developed with Apache Wicket using React.js. In addition, upgrading your Wicket version to the latest release is highly recommended, as it provides better compatibility with the latest tools and libraries.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search