Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor word fixes #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions base/server/src/main/resources/webassets/labs/lab2.html
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ <h3 class="mt-3">SQL Basics</h3>
users, but it does return all foo's. You can filter which columns to return when using an implicit
join like so:
<pre><code>SELECT foo.*, user.user_name FROM foo, user</code></pre>
The example returns everything from the foo table but only user_name from the foo table.
The example returns everything from the foo table but only user_name from the user table.
</dd>
<dt class="col-sm-3"><code>WHERE clause</code></dt>
<dd class="col-sm-9">
Expand Down Expand Up @@ -1382,7 +1382,7 @@ <h4 class="alert-heading">What is the correct path annotation</h4>
<code>DataAccessException</code> (thrown by the database code). The WebApplicationException is built
into JAX-RS and can be used to set a specific error code. You can see this in action by doing a
request to <a href="http://localhost:8080/rest/nothing" target="_blank">/rest/nothing</a>, Jersey
will find to find a match for this resource and throw a WebApplicationException with code
will fail to find a match for this resource and throw a WebApplicationException with code
<code>404</code>.
Your code can also throw <code>WebApplicationException</code>. An example of this follows, consider
an implementation of the <code>deleteFoo</code> method:
Expand Down