M-Abdelbaset 274aafe823 Bael-3395: Spring optional path variables (#8106)
* initial test cases

* changes in @requestMapping
2019-11-14 13:12:22 -08:00

23 lines
377 B
Java

package com.baeldung.model;
public class Article {
public static final Article DEFAULT_ARTICLE = new Article(12);
private Integer id;
public Article(Integer articleId) {
this.id = articleId;
}
public Integer getId() {
return id;
}
@Override
public String toString() {
return "Article [id=" + id + "]";
}
}