- Select Box value is null in controller
- <label for="dropdown">Department: </label>
- <form:select path="department" cssClass="dropdown">
- <form:option value="">Select Department</form:option>
- <c:if test="${fn:length(departList) > 0}">
- <form:options items="${departList}" itemValue="departmentId" itemLabel="departmentName"/>
- </c:if>
- </form:select>