In my project, i have to use 2 or 3 accelerometers such as ADXL345 and connect them with one Arduino. However, i don't know it is possible. How can i overcome this situation?
USE a MUX(Multiplexer) the ATmega328p already has a mux built in because it has various Analog inputs but just one A/D converter..... use a MUX , The only drawback is the time taken to read all the mux'ed analog inputs but it should be fine!
Is that module you linked to, the exact module that you have ?
With the voltage regulator and those connection points ?
You want to use 2 or 3, but that makes a big difference.
Which Arduino board do you use ?
The ADXL345 can be use with SPI interface and I2C interface.
In I2C mode, only two of them can be used. Connecting that module to the Arduino board is no problem with most boards.
I don't know if there are libraries that support more sensors in I2C mode, but when a library is written well, you only have to create two classes and it should work.