If the message No space left on device appears that means you need clear the file on your system or add new disk for your computer. "No space" not only means no free disk, it may also mean there is no iNodes in your system.
MyBatis is a Java persistence framework. It is easy to use and learn. This tutorial shows the most common scenarios.
The first level cache is enabled by default in MyBatis. It will cache the result after querying data from database. The second time you query MyBatis won't hit db. The first level cache is for session. If the session is close the cache will be cleared. I assume that you have created database and insert some data in your table.
In MySQL you can use desc to show the details of table. There is no desc command in PostgreSQL, but you can use \d or \d+ to show the table detail.
Swagger can help you generate document for your restful API. This blog will show you how to use it. I assume that you have known how to use Spring Boot. The structure of example project is like following.
Use jsonassert framework to compare two json are same or not. It only compare the content of them. The example code is here;
Use \d or \d+ in psql command to show all tables. \d+ will show additional detail of tables;
The annotation @ResponseBody can help you convert object to json. Sometimes if the field of object is null the json returned like following.
Use set command to list all environment variables. They are like following in my computer.
Use du command to show the size of folder. Before testing this command we will create a directory and a file.
In PosgreSQL there are several ways to switch database.
In PostgreSQL there are two ways to list all databases.
When I start tomcat to deploy my application I got the error message like following.
It's easy to use Apache POI read excel file. Let's say you have an excel file. The path of it is D:\test.xlsx. The content is like following.
We can convert list to map easily in Java8 by using stream. The sample code is like following.