BAEL-17397 Slice 15 | The top 100 articles should have their own package in the module (#7742)

This commit is contained in:
Dhawal Kapil 2019-09-09 18:08:25 +05:30 committed by Josh Cummings
parent b6183e9315
commit 7d412feca5
9 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.custom;
package com.baeldung.changeport;
import java.util.Collections;

View File

@ -1,4 +1,4 @@
package com.baeldung.custom;
package com.baeldung.changeport;
import org.springframework.boot.web.server.ConfigurableWebServerFactory;
import org.springframework.boot.web.server.WebServerFactoryCustomizer;

View File

@ -5,7 +5,7 @@ import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.custom.CustomApplication;
import com.baeldung.changeport.CustomApplication;
import com.baeldung.produceimage.ImageApplication;
import com.baeldung.propertyeditor.PropertyEditorApplication;
import com.baeldung.responseheaders.ResponseHeadersApplication;

View File

@ -5,7 +5,7 @@ import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.custom.CustomApplication;
import com.baeldung.changeport.CustomApplication;
import com.baeldung.produceimage.ImageApplication;
import com.baeldung.propertyeditor.PropertyEditorApplication;
import com.baeldung.responseheaders.ResponseHeadersApplication;

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.baeldung.session;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.baeldung.security;
package com.baeldung.session.filter;
import java.io.IOException;
import java.util.Arrays;

View File

@ -1,4 +1,4 @@
package com.baeldung.spring;
package com.baeldung.session.security.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -1,4 +1,4 @@
package com.baeldung.web;
package com.baeldung.session.web;
import javax.servlet.http.HttpSession;

View File

@ -1,4 +1,4 @@
package com.baeldung.spring;
package com.baeldung.session.web.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;