Use environment variables in NestJS with dotenv

Read this article for more details about using dotenv with NestJ...
March 20, 2025 Ravi Yasas
Read this article for more details about using dotenv with NestJ...
June 29, 2021 Ravi Yasas
@OneToOneThe best approach to bidirectional @OneToOne is to use @MapsIdStudent entity@Entity@Data@Table(name = "students")public class Student implements Serializable { @Id @GeneratedValue private Integer id; private...
June 29, 2021 Ravi Yasas
@ManyToManyMany to many relationships can be easily mapped by creating another table using @JoinTable as follows.Student entity@Data@Table(name = "Student")@Entitypublic class Student implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO)...
@manytomany / basics / beginners / hibernate / java / jpa / manytomany / mapping / tutorials
June 29, 2021 Ravi Yasas
java.lang.NullPointerExceptionWhen can it be thrown?According to the JavaDoc, the following scenarios can be found.Calling the instance method of a null object.Accessing or modifying the field of a null object.Taking the length of null as if it were an array.Accessing or modifying the slots of null...
basics / beginners / exceptions / java / java8 / nullpointer / optional / toString() / tutorials / value)f()
June 27, 2021 Ravi Yasas
The Thread poolIntroductionExecutor implementations use thread pools.The thread pool is a collection of worker threads that are ready to serve.Creating new threads and manage them uses a big amount of data.Worker threads in the thread pool will help to reduce this overhead of creating threads.Tasks...
beginners / concurrency / executor / executor service / java / Java Concurrency API / learning / priority / thread / thread priority / threads / tutorial
June 27, 2021 Ravi Yasas
Java ExecutorServiceIntroductionIf an application has few threads, it can be used threads very easily using the above methods.But if an application has many threads, it will be not easy to handle this.Executors can be used to avoid this complexity.The executor framework is a framework that can be...
beginners / concurrency / executor / executor service / java / Java Concurrency API / learning / priority / thread / thread priority / threads / tutorial
June 27, 2021 Ravi Yasas
Thread priorityEach thread has a priority.It starts from 1 to 10 and the highest priority is 10 while the lowest is 1.The default priority of the main thread is 5.If you set the thread priority out of 10, it will give a compile-time errorException in thread "main" java.lang.IllegalArgumentExcepti...
Read this article for more details about using dotenv with NestJS.