Emily Martin

Data Development & Partnerships Lead at BIScience

Emily Martin has been working in the business development space since 2019. Emily began their career at OZY Media as a Business Development Manager in 2019, and then moved to Ditto Labs in 2020 to serve in the same role. In 2021, they joined BIScience as the Data Development & Partnerships Lead. In this role, they are responsible for uncovering their competitors' digital campaigns, unwrapping rivals' digital distribution metrics, benchmarking online advertising strategies, leveraging big data insights, and assessing publishers' advertising ecosystems.

package com.example.demo.config;

import com.example.demo.interceptor.LoginInterceptor;

import org.springframework.context.annotation.Configuration;

import org.springframework.web.servlet.config.annotation.InterceptorRegistry;

import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**

* Created by Administrator on 2018/6/14.

*/

@Configuration

public class WebMvcConfig extends WebMvcConfigurerAdapter {

@Override

public void addInterceptors(InterceptorRegistry registry) {

registry.addInterceptor(new LoginInterceptor())

.addPathPatterns("/**")

.excludePathPatterns("/login")

.excludePathPatterns("/index");

super.addInterceptors(registry);

}

}

Links

Previous companies

OZY logo

Org chart