Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
M
Micro_Services
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ali.saeed
Micro_Services
Commits
bd86541a
Commit
bd86541a
authored
Apr 26, 2024
by
Ali Saeed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Init Cloud Gateway Service
parent
db9a8642
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
240 additions
and
0 deletions
+240
-0
compiler.xml
.idea/compiler.xml
+2
-0
encodings.xml
.idea/encodings.xml
+2
-0
pom.xml
cloud-gateway/pom.xml
+71
-0
CloudGatewayApplication.java
...ay/src/main/java/org/example/CloudGatewayApplication.java
+10
-0
application.properties
cloud-gateway/src/main/resources/application.properties
+0
-0
application.properties
cloud-gateway/target/classes/application.properties
+0
-0
CloudGatewayApplication.class
.../target/classes/org/example/CloudGatewayApplication.class
+0
-0
pom.xml
pom.xml
+1
-0
application.log
service-discovery/logs/application.log
+154
-0
No files found.
.idea/compiler.xml
View file @
bd86541a
...
...
@@ -9,11 +9,13 @@
<module
name=
"users-service"
/>
<module
name=
"invoicing-service"
/>
<module
name=
"service-discovery"
/>
<module
name=
"cloud-gateway"
/>
</profile>
</annotationProcessing>
</component>
<component
name=
"JavacSettings"
>
<option
name=
"ADDITIONAL_OPTIONS_OVERRIDE"
>
<module
name=
"cloud-gateway"
options=
"-parameters"
/>
<module
name=
"invoicing-service"
options=
"-parameters"
/>
<module
name=
"service-discovery"
options=
"-parameters"
/>
<module
name=
"users-service"
options=
"-parameters"
/>
...
...
.idea/encodings.xml
View file @
bd86541a
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"Encoding"
>
<file
url=
"file://$PROJECT_DIR$/cloud-gateway/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/cloud-gateway/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/invoicing-service/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/invoicing-service/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/service-discovery/src/main/java"
charset=
"UTF-8"
/>
...
...
cloud-gateway/pom.xml
0 → 100644
View file @
bd86541a
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
3.0.1
</version>
<relativePath/>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
cloud-gateway
</artifactId>
<name>
cloud-gateway
</name>
<properties>
<maven.compiler.source>
17
</maven.compiler.source>
<maven.compiler.target>
17
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<spring-cloud.version>
2022.0.0
</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-actuator
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-gateway
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-netflix-eureka-client
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-dependencies
</artifactId>
<version>
${spring-cloud.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>
netflix-candidates
</id>
<name>
Netflix Candidates
</name>
<url>
https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
</repositories>
</project>
\ No newline at end of file
cloud-gateway/src/main/java/org/example/CloudGatewayApplication.java
0 → 100644
View file @
bd86541a
package
org
.
example
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
CloudGatewayApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
CloudGatewayApplication
.
class
,
args
);
}
}
cloud-gateway/src/main/resources/application.properties
0 → 100644
View file @
bd86541a
cloud-gateway/target/classes/application.properties
0 → 100644
View file @
bd86541a
cloud-gateway/target/classes/org/example/CloudGatewayApplication.class
0 → 100644
View file @
bd86541a
File added
pom.xml
View file @
bd86541a
...
...
@@ -13,6 +13,7 @@
<module>
users-service
</module>
<module>
invoicing-service
</module>
<module>
service-discovery
</module>
<module>
cloud-gateway
</module>
</modules>
<properties>
...
...
service-discovery/logs/application.log
View file @
bd86541a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment