spring-projects / spring-petclinic

A sample Spring-based application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shouldn't the "name" property of the NamedEntity Bean be non nullable?

zyberzebra opened this issue · comments

commented
	@Column(name = "name", nullable = false)
	private String name;

I'm not super excites about changing this. It's more likely to lead to other bugs showing up unexpectedly, and doesn't really change the behaviour of the app as far as I can see.