You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/develop/quickstart-v2-java-webapp.md
+59-7Lines changed: 59 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,15 +32,15 @@ To run this sample you will need:
32
32
>
33
33
> ### Option 1: Register and auto configure your app and then download your code sample
34
34
>
35
-
> 1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredApps).
35
+
> 1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredApps) quickstart experience.
36
36
> 1. Enter a name for your application and select **Register**.
37
-
> 1. Follow the instructions to download and automatically configure your new application.
37
+
> 1. Follow the instructions in the portal's quickstart experience to download the automatically configured application code.
38
38
>
39
39
> ### Option 2: Register and manually configure your application and code sample
40
40
>
41
41
> #### Step 1: Register your application
42
42
>
43
-
> To register your application and manually add the app's registration information to your solution, follow these steps:
43
+
> To register your application and manually add the app's registration information to your application, follow these steps:
44
44
>
45
45
> 1. Sign in to the [Azure portal](https://portal.azure.com) using either a work or school account, or a personal Microsoft account.
46
46
> 1. If your account gives you access to more than one tenant, select your account in the top right corner, and set your portal session to the desired Azure AD tenant.
@@ -52,7 +52,7 @@ To run this sample you will need:
52
52
> - Leave **Redirect URI** blank for now, and select **Register**.
53
53
> 1. On the **Overview** page, find the **Application (client) ID** and the **Directory (tenant) ID** values of the application. Copy these values for later.
54
54
> 1. Select the **Authentication** from the menu, and then add the following information:
55
-
> -In**Redirect URIs**, add `https://localhost:8080/msal4jsample/secure/aad` and `https://localhost:8080/msal4jsample/graph/me`.
55
+
> -Under the **Web** platform configuration, in the**Redirect URIs**, add `https://localhost:8080/msal4jsample/secure/aad` and `https://localhost:8080/msal4jsample/graph/me`.
56
56
> - Select **Save**.
57
57
> 1. Select the **Certificates & secrets** from the menu and in the **Client secrets** section, click on **New client secret**:
58
58
>
@@ -80,7 +80,7 @@ To run this sample you will need:
80
80
81
81
> [!div class="sxs-lookup" renderon="portal"]
82
82
> Download the project and extract the zip file to a local folder closer to the root folder - for example, **C:\Azure-Samples**
83
-
>
83
+
>
84
84
> To use https with localhost, fill in the server.ssl.key properties. To generate a self-signed certificate, use the keytool utility (included in JRE).
85
85
>
86
86
> ```
@@ -93,7 +93,7 @@ To run this sample you will need:
93
93
> server.ssl.key-alias=testCert
94
94
> ```
95
95
> Put the generated keystore file in the "resources" folder.
> [Download the code sample](https://github.com/Azure-Samples/ms-identity-java-webapp/archive/master.zip)
99
99
@@ -153,8 +153,56 @@ If you are running the web application from an IDE, click on run, then navigate
153
153
- *Sign Out*: Signs the current user out of the application and redirects them to the home page.
154
154
- *Show User Info*: Acquires a token for Microsoft Graph and calls Microsoft Graph with a request containing the token, which returns basic information about the signed-in user.
155
155
156
+
##### Running from Tomcat
157
+
158
+
If you would like to deploy the web sample to Tomcat, you will need to make a couple of changes to the source code.
159
+
160
+
1. Open ms-identity-java-webapp/pom.xml
161
+
- Under `<name>msal-web-sample</name>` add `<packaging>war</packaging>`
3. Open a command prompt, go to the root folder of the project, and run `mvn package`
199
+
- This will generate a `msal-web-sample-0.1.0.war` file in your /targets directory.
200
+
- Rename this file to `ROOT.war`
201
+
- Deploy this war file using Tomcat or any other J2EE container solution.
202
+
- To deploy on Tomcat container, copy the .war file to the webapps folder under your Tomcat installation and then start the Tomcat server.
203
+
204
+
This WAR will automatically be hosted at https://localhost:8080/.
156
205
157
-
158
206
> [!IMPORTANT]
159
207
> This quickstart application uses a client secret to identify itself as confidential client. Because the client secret is added as a plain-text to your project files, for security reasons it is recommended that you use a certificate instead of a client secret before considering the application as production application. For more information on how to use a certificate, see [Certificate credentials for application authentication](https://docs.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials).
160
208
@@ -169,6 +217,8 @@ MSAL for Java (MSAL4J) is the Java library used to sign in users and request tok
169
217
170
218
Add MSAL4J to your application by using Maven or Gradle to manage your dependencies by making the following changes to the application's pom.xml (Maven) or build.gradle (Gradle) file.
171
219
220
+
In pom.xml:
221
+
172
222
```XML
173
223
<dependency>
174
224
<groupId>com.microsoft.azure</groupId>
@@ -177,6 +227,8 @@ Add MSAL4J to your application by using Maven or Gradle to manage your dependenc
0 commit comments