symbol: method getSecondName()
secondName
?getSecondName()
?@Data
или @Getter @Setter
к вашим сущностям.@Id
Можно ли сделать Id не уникальное значение?
However, more often than not, we don't need all the properties of the returned objects
public void setZones(List<Zone> zones) {
zones.forEach(zone -> zone.setDestination(this));
this.zones = zones;
}
SELECT "messagekey",
MAX(CASE WHEN ("locale"='de') THEN "messagecontent" ELSE null END ) AS de,
MAX(CASE WHEN ("locale"='ru') THEN "messagecontent" ELSE null END ) AS ru,
MAX(CASE WHEN ("locale"='en') THEN "messagecontent" ELSE null END ) AS en
FROM "translations" GROUP BY "messagekey";
+------------+--------------------------+---------------------------+-----------------------+
| messagekey | de | ru | en |
+------------+--------------------------+---------------------------+-----------------------+
| key1 | text auf Deutsch | текст на русском | text in english |
| key2 | andere text auf Deutsch | другой текст на русском | other text in english |
+------------+--------------------------+---------------------------+-----------------------+
List<GrowBox> findByUserId(Long userId);
List<GrowBox> findAllByUserUserId(Long userId)
если мне память не изменяет, то должно быть как-то такList<GrowBox> findAllByUser(User user);
No property userId found for type GrowBox!
Caused by: org.springframework.data.mapping.PropertyReferenceException: No property userId found for type GrowBox!
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
Model, model.addAttribute() th:each
С бд проблема тк у меня MAC OS ,
@Column(name = "user_name")
@Getter
@Setter
private String userName;
List<Task> tasks
), ManyToOne добавьте в Task (User user
) и все. Очень хотелось бы дочерние записи (DictionaryContent ) связать с Dictionary по средствам его UUID идентификатора.
@Entity
public class Dictionary {
@OneToMany(mappedBy = "dictionary")
private List<DictionaryContent> contentList;
}
@Entity
public class DictionaryContent {
@ManyToOne
@JoinColumn(name = "id")
private Dictionary dictionary;
}
однако в таблице DictionaryContent, не появляется никакого идентификатора-указателя на родительский Dictionary.
@DateTimeFormat(pattern = "dd/MM/yyyy")
private Date dob;
public String addCustomer(@ModelAttribute("addCustomerForm") AddCustomerForm form) {
// do something with form input ..
}
input{type="date"}