Made wepAppContex commont

This commit is contained in:
BuildTools
2020-10-30 16:53:41 +01:00
parent 4267fadf62
commit 1327a239e8
8 changed files with 17 additions and 37 deletions

View File

@ -0,0 +1,10 @@
package com.plannaplan.controllers;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.context.WebApplicationContext;
public abstract class AbstractControllerTest {
@Autowired
protected WebApplicationContext webApplicationContext;
}