forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into BAEL-2564
- Loading branch information
Showing
887 changed files
with
13,849 additions
and
1,919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Relevant articles: | ||
|
||
- [Introduction to Akka HTTP](https://www.baeldung.com/akka-http) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0"?> | ||
<project | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>akka-http</artifactId> | ||
<name>akka-http</name> | ||
|
||
<parent> | ||
<artifactId>parent-modules</artifactId> | ||
<groupId>com.baeldung</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.typesafe.akka</groupId> | ||
<artifactId>akka-http_2.12</artifactId> | ||
<version>${akka.http.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.typesafe.akka</groupId> | ||
<artifactId>akka-stream_2.12</artifactId> | ||
<version>2.5.11</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.typesafe.akka</groupId> | ||
<artifactId>akka-http-jackson_2.12</artifactId> | ||
<version>${akka.http.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.typesafe.akka</groupId> | ||
<artifactId>akka-http-testkit_2.12</artifactId> | ||
<version>${akka.http.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
<akka.http.version>10.0.11</akka.http.version> | ||
<akka.stream.version>2.5.11</akka.stream.version> | ||
</properties> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
public class User { | ||
|
||
private final Long id; | ||
|
||
private final String name; | ||
|
||
public User() { | ||
this.name = ""; | ||
this.id = null; | ||
} | ||
|
||
public User(Long id, String name) { | ||
this.name = name; | ||
this.id = id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
akka-http/src/main/java/com/baeldung/akkahttp/UserActor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
import akka.actor.AbstractActor; | ||
import akka.actor.Props; | ||
import akka.japi.pf.FI; | ||
import com.baeldung.akkahttp.UserMessages.ActionPerformed; | ||
import com.baeldung.akkahttp.UserMessages.CreateUserMessage; | ||
import com.baeldung.akkahttp.UserMessages.GetUserMessage; | ||
|
||
|
||
class UserActor extends AbstractActor { | ||
|
||
private UserService userService = new UserService(); | ||
|
||
static Props props() { | ||
return Props.create(UserActor.class); | ||
} | ||
|
||
@Override | ||
public Receive createReceive() { | ||
return receiveBuilder() | ||
.match(CreateUserMessage.class, handleCreateUser()) | ||
.match(GetUserMessage.class, handleGetUser()) | ||
.build(); | ||
} | ||
|
||
private FI.UnitApply<CreateUserMessage> handleCreateUser() { | ||
return createUserMessageMessage -> { | ||
userService.createUser(createUserMessageMessage.getUser()); | ||
sender().tell(new ActionPerformed(String.format("User %s created.", createUserMessageMessage.getUser() | ||
.getName())), getSelf()); | ||
}; | ||
} | ||
|
||
private FI.UnitApply<GetUserMessage> handleGetUser() { | ||
return getUserMessageMessage -> { | ||
sender().tell(userService.getUser(getUserMessageMessage.getUserId()), getSelf()); | ||
}; | ||
} | ||
|
||
} |
49 changes: 49 additions & 0 deletions
49
akka-http/src/main/java/com/baeldung/akkahttp/UserMessages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
import java.io.Serializable; | ||
|
||
public interface UserMessages { | ||
|
||
class ActionPerformed implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private final String description; | ||
|
||
public ActionPerformed(String description) { | ||
this.description = description; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
} | ||
|
||
class CreateUserMessage implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
private final User user; | ||
|
||
public CreateUserMessage(User user) { | ||
this.user = user; | ||
} | ||
|
||
public User getUser() { | ||
return user; | ||
} | ||
} | ||
|
||
class GetUserMessage implements Serializable { | ||
private static final long serialVersionUID = 1L; | ||
private final Long userId; | ||
|
||
public GetUserMessage(Long userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public Long getUserId() { | ||
return userId; | ||
} | ||
} | ||
|
||
} |
70 changes: 70 additions & 0 deletions
70
akka-http/src/main/java/com/baeldung/akkahttp/UserServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
import java.util.Optional; | ||
import java.util.concurrent.CompletionStage; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import akka.actor.ActorRef; | ||
import akka.actor.ActorSystem; | ||
import akka.http.javadsl.marshallers.jackson.Jackson; | ||
import akka.http.javadsl.model.StatusCodes; | ||
import akka.http.javadsl.server.HttpApp; | ||
import akka.http.javadsl.server.Route; | ||
import akka.pattern.PatternsCS; | ||
import akka.util.Timeout; | ||
import com.baeldung.akkahttp.UserMessages.ActionPerformed; | ||
import com.baeldung.akkahttp.UserMessages.CreateUserMessage; | ||
import com.baeldung.akkahttp.UserMessages.GetUserMessage; | ||
import scala.concurrent.duration.Duration; | ||
import static akka.http.javadsl.server.PathMatchers.*; | ||
|
||
class UserServer extends HttpApp { | ||
|
||
private final ActorRef userActor; | ||
|
||
Timeout timeout = new Timeout(Duration.create(5, TimeUnit.SECONDS)); | ||
|
||
UserServer(ActorRef userActor) { | ||
this.userActor = userActor; | ||
} | ||
|
||
@Override | ||
public Route routes() { | ||
return path("users", this::postUser) | ||
.orElse(path(segment("users").slash(longSegment()), id -> | ||
route(getUser(id)))); | ||
} | ||
|
||
private Route getUser(Long id) { | ||
return get(() -> { | ||
CompletionStage<Optional<User>> user = PatternsCS.ask(userActor, new GetUserMessage(id), timeout) | ||
.thenApply(obj -> (Optional<User>) obj); | ||
|
||
return onSuccess(() -> user, performed -> { | ||
if (performed.isPresent()) | ||
return complete(StatusCodes.OK, performed.get(), Jackson.marshaller()); | ||
else | ||
return complete(StatusCodes.NOT_FOUND); | ||
}); | ||
}); | ||
} | ||
|
||
private Route postUser() { | ||
return route(post(() -> entity(Jackson.unmarshaller(User.class), user -> { | ||
CompletionStage<ActionPerformed> userCreated = PatternsCS.ask(userActor, new CreateUserMessage(user), timeout) | ||
.thenApply(obj -> (ActionPerformed) obj); | ||
|
||
return onSuccess(() -> userCreated, performed -> { | ||
return complete(StatusCodes.CREATED, performed, Jackson.marshaller()); | ||
}); | ||
}))); | ||
} | ||
|
||
public static void main(String[] args) throws Exception { | ||
ActorSystem system = ActorSystem.create("userServer"); | ||
ActorRef userActor = system.actorOf(UserActor.props(), "userActor"); | ||
UserServer server = new UserServer(userActor); | ||
server.startServer("localhost", 8080, system); | ||
} | ||
|
||
} |
35 changes: 35 additions & 0 deletions
35
akka-http/src/main/java/com/baeldung/akkahttp/UserService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
public class UserService { | ||
|
||
private final static List<User> users = new ArrayList<>(); | ||
|
||
static { | ||
users.add(new User(1l, "Alice")); | ||
users.add(new User(2l, "Bob")); | ||
users.add(new User(3l, "Chris")); | ||
users.add(new User(4l, "Dick")); | ||
users.add(new User(5l, "Eve")); | ||
users.add(new User(6l, "Finn")); | ||
} | ||
|
||
public Optional<User> getUser(Long id) { | ||
return users.stream() | ||
.filter(user -> user.getId() | ||
.equals(id)) | ||
.findFirst(); | ||
} | ||
|
||
public void createUser(User user) { | ||
users.add(user); | ||
} | ||
|
||
public List<User> getUsers(){ | ||
return users; | ||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
akka-http/src/test/java/com/baeldung/akkahttp/UserServerUnitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package com.baeldung.akkahttp; | ||
|
||
import akka.actor.ActorRef; | ||
import akka.actor.ActorSystem; | ||
import akka.http.javadsl.model.ContentTypes; | ||
import akka.http.javadsl.model.HttpEntities; | ||
import akka.http.javadsl.model.HttpRequest; | ||
import akka.http.javadsl.testkit.JUnitRouteTest; | ||
import akka.http.javadsl.testkit.TestRoute; | ||
import org.junit.Test; | ||
|
||
public class UserServerUnitTest extends JUnitRouteTest { | ||
|
||
ActorSystem system = ActorSystem.create("helloAkkaHttpServer"); | ||
|
||
ActorRef userActorRef = system.actorOf(UserActor.props(), "userActor"); | ||
|
||
TestRoute appRoute = testRoute(new UserServer(userActorRef).routes()); | ||
|
||
@Test | ||
public void whenRequest_thenActorResponds() { | ||
|
||
appRoute.run(HttpRequest.GET("/users/1")) | ||
.assertEntity(alice()) | ||
.assertStatusCode(200); | ||
|
||
appRoute.run(HttpRequest.GET("/users/42")) | ||
.assertStatusCode(404); | ||
|
||
appRoute.run(HttpRequest.DELETE("/users/1")) | ||
.assertStatusCode(200); | ||
|
||
appRoute.run(HttpRequest.DELETE("/users/42")) | ||
.assertStatusCode(200); | ||
|
||
appRoute.run(HttpRequest.POST("/users") | ||
.withEntity(HttpEntities.create(ContentTypes.APPLICATION_JSON, zaphod()))) | ||
.assertStatusCode(201); | ||
|
||
} | ||
|
||
private String alice() { | ||
return "{\"id\":1,\"name\":\"Alice\"}"; | ||
} | ||
|
||
private String zaphod() { | ||
return "{\"id\":42,\"name\":\"Zaphod\"}"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...ellaneous-1/src/main/java/com/baeldung/algorithms/enumstatemachine/LeaveRequestState.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.baeldung.algorithms.enumstatemachine; | ||
|
||
public enum LeaveRequestState { | ||
|
||
Submitted { | ||
@Override | ||
public LeaveRequestState nextState() { | ||
System.out.println("Starting the Leave Request and sending to Team Leader for approval."); | ||
return Escalated; | ||
} | ||
|
||
@Override | ||
public String responsiblePerson() { | ||
return "Employee"; | ||
} | ||
}, | ||
Escalated { | ||
@Override | ||
public LeaveRequestState nextState() { | ||
System.out.println("Reviewing the Leave Request and escalating to Department Manager."); | ||
return Approved; | ||
} | ||
|
||
@Override | ||
public String responsiblePerson() { | ||
return "Team Leader"; | ||
} | ||
}, | ||
Approved { | ||
@Override | ||
public LeaveRequestState nextState() { | ||
System.out.println("Approving the Leave Request."); | ||
return this; | ||
} | ||
|
||
@Override | ||
public String responsiblePerson() { | ||
return "Department Manager"; | ||
} | ||
}; | ||
|
||
public abstract String responsiblePerson(); | ||
|
||
public abstract LeaveRequestState nextState(); | ||
|
||
} |
Oops, something went wrong.