I'm still new to thymleaf and i'm trying to figure out how i can select the sizes i've added to the database to my product page
here is how it shows up when i add it to my database
my size variable is a string type
private String size;
I want to implement it in my html with thymleaf
<label for="sizes">Choose size:</label>
<select name="sizes" id="sizes">
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
</select>