Skip to content

Java Vogue

Java Tutorials

  • All Tutorials
  • Java
  • Java8
  • Spring Boot
  • Microservices
  • Spring
  • Hibernate
  • Reactjs
  • Interview Question
  • Contact

Category: how to

August 26, 2015 javavogue

How to delete a non-empty directory in Terminal?

rm -rf myfolder It deletes all files and folders contained in the myfolder directory. Add sudo at the beginning of

Continue reading
August 26, 2015 javavogue

How do I delete all data in a Cassandra column family ?

  We can truncate  all rows from cassandra tables using truncate Example: cqlsh: test > TRUNCATE test.users ;  

Continue reading
August 26, 2015 javavogue

How to Convert Java Timestamp to MySQL timestamp vice versa

  How to Insert java time in mysql timestamp java.util.Date date = new Date(); Timestamp timestamp = new Timestamp(date.getTime()); preparedStatement.setTimestamp(1,

Continue reading

Posts navigation

«Previous Posts 1 2

Recent Posts

  • Java Program to display student details Using Class and Object
  • TreeMap floorEntry() method in Java
  • Check If Int is Null In Java
  • Java Math min() method example
  • TreeMap ceilingKey() method in Java

Popular Posts

  • How to Read value From application.properties in spring boot
  • ‘Field required a bean of type that could not be found.’ error spring restful API
  • How to Reload Changes Without Restarting the Server – Spring Boot
  • No converter found for return value of type: org.springframework.http.converter.HttpMessageNotWritableException: No converter found
  • Spring Boot @ConfigurationProperties Property Validation
hi