[Microservices] - Changed package name
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package com.ayoosh.configserver;
|
||||
package com.javadevjournal.configserver;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
@@ -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
|
||||
|
||||
BIN
microservice/configserver/src/test/.DS_Store
vendored
Normal file
BIN
microservice/configserver/src/test/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -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;
|
||||
BIN
microservice/dicoveryserver/src/main/.DS_Store
vendored
Normal file
BIN
microservice/dicoveryserver/src/main/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
package com.ayoosh.discoveryserver;
|
||||
package com.javadevjournal.discoveryserver;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
BIN
microservice/dicoveryserver/src/test/.DS_Store
vendored
Normal file
BIN
microservice/dicoveryserver/src/test/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -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;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.ayoosh.profilemanagement;
|
||||
package com.javadevjournal.profilemanagement;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
@@ -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.*;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.ayoosh.profilemanagement.domain;
|
||||
package com.javadevjournal.profilemanagement.domain;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user