Pinned Loading
-
-
sample-spring-data-jpa-hibernate-java-conf
sample-spring-data-jpa-hibernate-java-conf Publicsample spring data jpa project with hibernate
Java
-
Git Commands & cheatsheet.md
Git Commands & cheatsheet.md 1Converted from google sheet:
2https://docs.google.com/spreadsheets/d/e/2PACX-1vScHSvMHYvFfRkHipFxhoiLaarEm2XYF2QSdSSbvNq-wszctrdqn2h00DGyW29fZOaOqKB95Z16YHVV/pubhtml?gid=0&single=true
34| Terminology | Description |
5|------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-
Maven Commands & Cheatsheet.md
Maven Commands & Cheatsheet.md 1| Info type | Description |
2|----------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
3| Maven standard directory layout | └───maven-project ├───pom.xml ├───README.txt ├───NOTICE.txt ├───LICENSE.txt └───src ├───main │ ├───java │ ├───resources │ ├───filters │ └───webapp ├───test │ ├───java │ ├───resources │ └───filters ├───it ├───site └───assembly |
4| Maven standard directory explanation | maven-project/pom.xml – defines dependencies and modules needed during the build lifecycle of a Maven project maven-project/LICENSE.txt – licensing information of the project maven-project/README.txt – summary of the project maven-project/NOTICE.txt – information about third-party libraries used in the project maven-project/src/main – contains source code and resources that become part of the artifact maven-project/src/test – holds all the test code and resources maven-project/src/it – usually reserved for integration tests used by the Maven Failsafe Plugin maven-project/src/site – site documentation created using the Maven Site Plugin maven-project/src/assembly – assembly configuration for packaging binaries src/main/java – Java source code for the artifact src/main/resources – configuration files and others such as i18n files, per-environment configuration files, and XML configurations src/main/webapp – for web applications, contains resources like JavaScript, CSS, HTML files, view templates, and images src/main/filters – contains files that inject values into configuration properties in the resources folder during the build phase src/test/java – Java source code for tests src/test/resources – configuration files and others used by tests src/test/filters – contains files that inject values into configuration properties in the resources folder during the test phase |
5| Maven dependency scopes | Compile - Default. Available on all classpaths of project. Also, propagated to downstream projects. • Provided - Like Compile, but expected to be provided by JDK or container at runtime. • Runtime - Not required for compile, but needed for runtime. On runtime and test classpaths, not compile. • Test - Only available on test classpath, not transitive. • System - similar to provided, but JAR is added to system explicitly. (via file path) • Import - Imports dependency of POM. |
-
-
notes-on-spring-framework-and-related-technologies
notes-on-spring-framework-and-related-technologies Public
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.