Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Demonstrate use of regex for validating bean in Validation tab #33

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import javax.validation.constraints.Future;
import javax.validation.constraints.Max;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;

import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.format.annotation.DateTimeFormat.ISO;
Expand All @@ -19,6 +20,17 @@ public class JavaBean {
@Future
@DateTimeFormat(iso=ISO.DATE)
private Date date;

@Pattern(regexp="/([A-Za-z-0-9])+/g")
private String alphaNumericHyphen;

public String getAlphaNumericHyphen() {
return alphaNumericHyphen;
}

public void setAlphaNumericHyphen(String alphaNumericHyphen) {
this.alphaNumericHyphen = alphaNumericHyphen;
}

public Integer getNumber() {
return number;
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/WEB-INF/views/home.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -364,10 +364,10 @@
</p>
<ul>
<li>
<a id="validateNoErrors" class="textLink" href="<c:url value="/validate?number=3&date=2029-07-04" />">Validate, no errors</a>
<a id="validateNoErrors" class="textLink" href="<c:url value="/validate?number=3&date=2029-07-04&alphaNumericHyphen=fd-rd01" />">Validate, no errors</a>
</li>
<li>
<a id="validateErrors" class="textLink" href="<c:url value="/validate?number=3&date=2010-07-01" />">Validate, errors</a>
<a id="validateErrors" class="textLink" href="<c:url value="/validate?number=3&date=2010-07-01&alphaNumericHyphen=$%^" />">Validate, errors</a>
</li>
</ul>
</div>
Expand Down