Commit ccb63035 by lanmw

update

parent 1055f81c
...@@ -149,6 +149,11 @@ ...@@ -149,6 +149,11 @@
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
<version>3.12.0</version> <version>3.12.0</version>
</dependency> </dependency>
<dependency>
<groupId>com.github.wenhao</groupId>
<artifactId>jpa-spec</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
...@@ -8,8 +8,8 @@ import org.springframework.web.bind.annotation.RequestParam; ...@@ -8,8 +8,8 @@ import org.springframework.web.bind.annotation.RequestParam;
import java.util.List; import java.util.List;
@FeignClient(value = "authService", url = "http://${dg.authservice.name:authservice-service}.${dg.namespace:data-governance}:${dg.authservice.port:8080}") //@FeignClient(value = "authService", url = "http://${dg.authservice.name:authservice-service}.${dg.namespace:data-governance}:${dg.authservice.port:8080}")
//@FeignClient(value = "authService", url = "http://127.0.0.1:8077") @FeignClient(value = "authService")
public interface AuthService { public interface AuthService {
// 根据用户username获取用户 // 根据用户username获取用户
@RequestMapping(value = "/users/findByName", method = RequestMethod.GET) @RequestMapping(value = "/users/findByName", method = RequestMethod.GET)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment