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
Select the JDK(set the `JDK home path`) and click `Next`
35
35
36
36

37
37
@@ -51,7 +51,7 @@ The application is built using Maven. To build the application click on icon on
51
51
52
52

53
53
54
-
The `Maven Projects` window will open ont the right side. Maven goals of `clean` and `install` need to be set to build the application.
54
+
The `Maven Projects` window will open on the right side. Maven goals of `clean` and `install` need to be set to build the application.
55
55
56
56
To set the `clean` goal, click on `Lifecycle` to display the tree of goals. Right click on `clean` and select `Create 'UserSignup [clean]'...`
57
57
@@ -77,7 +77,7 @@ Then run `install`
77
77
78
78

79
79
80
-
When the application builds you will see a success message in the log window.
80
+
When the application builds, you will see a success message in the log window.
81
81
82
82

83
83
@@ -87,7 +87,7 @@ Open a terminal and go to the application directory. Start the application with
87
87
88
88
<pre>> docker-compose up </pre>
89
89
90
-
Docker will build the images for Apache Tomcat and MySQL and start the containers. It will also mount the application directory (`./app/target/UserSignup`) as a data volume on the host system to the Tomcat webapps directory in the web server container.
90
+
Docker will build the images for Apache Tomcat and MySQL then start the containers. It will also mount the application directory (`./app/target/UserSignup`) as a data volume on the host system to the Tomcat webapps directory in the web server container.
91
91
92
92
Open a browser window and go to:
93
93
'localhost:8080'; you should see the Tomcat home page
@@ -134,13 +134,13 @@ Add a new remote configuration.
In the `Run\Debug Configurations` window, set the `Name` of the configuration and in `Settings` set the port to '8000' the default Tomcat JPDA debuging port. Clcik on `OK` to save the configuration.
137
+
In the `Run\Debug Configurations` window, set the `Name` of the configuration as `docker tomcat`and in `Settings` set the port to '8000' as the default Tomcat JPDA debuging port. Click on `OK` to save the configuration.
Since the problem is with the password, lets see how the password is set in the User class. In the User class, the setter for password is scrambled using [rot13](https://en.wikipedia.org/wiki/ROT13) before it is saved to the database.
143
+
Since the problem is with the password, let's see how the password is set in the User class. In the User class, the setter for password is scrambled using [rot13](https://en.wikipedia.org/wiki/ROT13) before it is saved to the database.
144
144
145
145

146
146
@@ -152,7 +152,7 @@ Choose the remote Tomcat debug configuration. The Debugger console will be displ
0 commit comments