References Maven Dependencies Maven is a powerful project management tool that is based on POM (project object model). It is used for projects to build, manage dependency and documentation. Maven addresses two aspects of building software: first, it describes how software is built, and second, it describes its dependencies. so coming to dependencymanagement vs dependencies tag in maven maven has two mechanisms to add the dependencies of other modules/project. One is Dependencies tag and other is Dependency Management. People often wonder what the difference between the two. An important question is when to use what? First, of all, we should have an idea of what is multi module applications. As in the case in case of multi module applications only they differ. A multi-module project is, as its name suggests, a project that consists of multiple modules, where a module is a project. Y...
Mine sweet age of first Luv At dat time my father has just trransferd to Patiala..d romantic city of Punjab... dere i got admission in KV no1 patiala cant.... On d first very day of maa school I was dumstruck by her.... wen i saw her...i keep gazing on her.. n ud u belive I was hardly of ^6yr n few month old ... coz i got recently maa admission in std 2nd.. as i mentioned above.. She came in a very glorious dress... a stunning n d same spicy look as a "punjaban" soon we got introduced.... her name was "Ritu Duggal"... nd from dat moment till i reached home.....I'd alwaz been glimpse of her at evry few secaond... But as i reached home i waz stunned..once again stunned by Rittu.... "wow!!!!! itz gr8 to whom I'm fanatasizin z infront of me..." Manoj.... my drem was broken by dad.. touch her feat she z ur mam...!!!!!!!!!!!!!!!!!!!! Fu...k!!!!!!! how painfull it was... She was maa dad's Frnds wife... maa class teacher.... a hot n sweet lady of 22 to...
Create Schema automatically https://stackify.com/spring-boot-level-up/ if you want to add initial data to the database, you can create files with standard names such as schema.sql, data.sql or import.sql to be picked up automatically by Spring Boot auto-configuration, or you can define your DataSource bean to load a custom named SQL script manually: @Configuration public class PersistenceConfig { @Bean public DataSource dataSource () { EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder (); EmbeddedDatabase db = builder . setType ( EmbeddedDatabaseType . H2 ) . addScript ( "mySchema.sql" ) . addScript ( "myData.sql" ) . build (); return db ; } } This has the effect of overriding the auto-configured DataSource bean, but not the rest of the default beans that make up the configuration of the persistence layer. The entry point for...
Comments