JAVA-117 Standardize spring-boot-modules/spring-boot-client
This commit is contained in:
parent
487d6b38fc
commit
2d0f2c171b
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot;
|
||||
package com.baeldung.boot;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.client;
|
||||
package com.baeldung.boot.client;
|
||||
|
||||
public class Details {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.client;
|
||||
package com.baeldung.boot.client;
|
||||
|
||||
import org.springframework.boot.web.client.RestTemplateBuilder;
|
||||
import org.springframework.stereotype.Service;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.websocket.client;
|
||||
package com.baeldung.websocket.client;
|
||||
|
||||
public class Message {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.websocket.client;
|
||||
package com.baeldung.websocket.client;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.websocket.client;
|
||||
package com.baeldung.websocket.client;
|
||||
|
||||
import java.util.Scanner;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
package org.baeldung;
|
||||
package com.baeldung;
|
||||
|
||||
import org.baeldung.boot.Application;
|
||||
import com.baeldung.boot.Application;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
@ -1,10 +1,12 @@
|
|||
package org.baeldung.boot.client;
|
||||
package com.baeldung.boot.client;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.springframework.test.web.client.match.MockRestRequestMatchers.requestTo;
|
||||
import static org.springframework.test.web.client.response.MockRestResponseCreators.withSuccess;
|
||||
|
||||
import org.baeldung.boot.Application;
|
||||
import com.baeldung.boot.Application;
|
||||
import com.baeldung.boot.client.Details;
|
||||
import com.baeldung.boot.client.DetailsServiceClient;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
|
@ -1,6 +1,5 @@
|
|||
package com.baeldung.websocket.client;
|
||||
|
||||
import org.baeldung.websocket.client.MyStompSessionHandler;
|
||||
import org.junit.Test;
|
||||
import org.mockito.Mockito;
|
||||
import org.springframework.messaging.simp.stomp.StompHeaders;
|
||||
|
|
Loading…
Reference in New Issue