[Microservices] - Changed package name

This commit is contained in:
Sanjoy Kumer Deb
2020-05-02 20:06:08 +06:00
parent 1737c7e42d
commit a943499e77
15 changed files with 18 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
package com.ayoosh.configserver;
package com.javadevjournal.configserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@@ -2,5 +2,5 @@ server.port=8082
spring.application.name=configserver
spring.cloud.config.server.git.uri = https://github.com/flopcoder82/microservices
spring.cloud.config.server.git.username=flopcoder82
spring.cloud.config.server.git.password=Gitto@123
spring.cloud.config.server.git.password=Gittu@123Z
spring.cloud.config.server.git.clone-on-start=true

Binary file not shown.

View File

@@ -1,4 +1,4 @@
package com.ayoosh.configserver;
package com.javadevjournal.configserver;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

Binary file not shown.

View File

@@ -1,4 +1,4 @@
package com.ayoosh.discoveryserver;
package com.javadevjournal.discoveryserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

Binary file not shown.

View File

@@ -1,4 +1,4 @@
package com.ayoosh.discoveryserver;
package com.javadevjournal.discoveryserver;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

View File

@@ -1,4 +1,4 @@
package com.ayoosh.profilemanagement;
package com.javadevjournal.profilemanagement;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@@ -1,7 +1,7 @@
package com.ayoosh.profilemanagement.controller;
package com.javadevjournal.profilemanagement.controller;
import com.ayoosh.profilemanagement.domain.EmployeeProfile;
import com.ayoosh.profilemanagement.service.EmployeeProfileService;
import com.javadevjournal.profilemanagement.domain.EmployeeProfile;
import com.javadevjournal.profilemanagement.service.EmployeeProfileService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

View File

@@ -1,6 +1,6 @@
package com.ayoosh.profilemanagement.dao;
package com.javadevjournal.profilemanagement.dao;
import com.ayoosh.profilemanagement.domain.EmployeeProfile;
import com.javadevjournal.profilemanagement.domain.EmployeeProfile;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

View File

@@ -1,4 +1,4 @@
package com.ayoosh.profilemanagement.domain;
package com.javadevjournal.profilemanagement.domain;
import javax.persistence.*;

View File

@@ -1,6 +1,6 @@
package com.ayoosh.profilemanagement.service;
package com.javadevjournal.profilemanagement.service;
import com.ayoosh.profilemanagement.domain.EmployeeProfile;
import com.javadevjournal.profilemanagement.domain.EmployeeProfile;
import java.util.List;

View File

@@ -1,7 +1,7 @@
package com.ayoosh.profilemanagement.service;
package com.javadevjournal.profilemanagement.service;
import com.ayoosh.profilemanagement.dao.ProfileRepository;
import com.ayoosh.profilemanagement.domain.EmployeeProfile;
import com.javadevjournal.profilemanagement.dao.ProfileRepository;
import com.javadevjournal.profilemanagement.domain.EmployeeProfile;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

View File

@@ -1,4 +1,4 @@
package com.ayoosh.profilemanagement;
package com.javadevjournal.profilemanagement;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;