I have a third party jar which has a filter say XYZFilter. Usual way specified to configure this JAR in applications is to make a fresh entry in web.xml with XYZFilter which will invoke the filter. Later, we can consume APIs exposed by this JAR like - NewUser user = XYZFilter.getData(httpRequest).
However, we dont have a web.xml in our Spring application.
If someone can point high level steps on how can I consume getData() in this JAR?