All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rollbar.spring.webmvc.RollbarWebApplicationInitializer Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha.1
Show newest version
package com.rollbar.spring.webmvc;

import com.rollbar.web.listener.RollbarRequestListener;
import jakarta.servlet.ServletContext;
import org.springframework.web.WebApplicationInitializer;

public class RollbarWebApplicationInitializer implements WebApplicationInitializer {

  @Override
  public void onStartup(ServletContext container) {

    // Attach the RollbarRequestListner to attribute HTTP Request data into the Exception object
    // This will be visible in Rollbar
    container.addListener(RollbarRequestListener.class);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy