I have two domain classes Question and Tag. Question has 'hasMany relation' with Tag.
I am trying to save a question with some tags, but the error message is "Failed to convert property value of type java.lang.String to required type com.org.Tag for property tag; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [com.org.Tag] for property tag: no matching editors or conversion strategy found "
from my UI how can i send the list of Tags into QuestionController and how can i save Question with relationship with Tag