BAEL-3385: Move article related code to its own package

This commit is contained in:
Krzysztof Woyke
2019-12-16 08:51:01 +01:00
parent 2601170c2b
commit e11af10b9b
4 changed files with 19 additions and 8 deletions
@@ -0,0 +1,12 @@
package com.baeldung.h2db.notnull;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class NotNullVsNullableApplication {
public static void main(String... args) {
SpringApplication.run(NotNullVsNullableApplication.class, args);
}
}
@@ -1,6 +1,6 @@
package com.baeldung.h2db.springboot.daos;
package com.baeldung.h2db.notnull.daos;
import com.baeldung.h2db.springboot.models.Item;
import com.baeldung.h2db.notnull.models.Item;
import org.springframework.data.repository.CrudRepository;
import java.math.BigDecimal;
@@ -1,4 +1,4 @@
package com.baeldung.h2db.springboot.models;
package com.baeldung.h2db.notnull.models;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;