Skip to content

Instantly share code, notes, and snippets.

View rock-007's full-sized avatar
πŸˆβ€β¬›

Umair Ashraf rock-007

πŸˆβ€β¬›
View GitHub Profile
@rock-007
rock-007 / gist:d34bda9d3df5cbf9a06f94f628c9c60d
Created July 12, 2024 08:46
Thingsboard server log file
This file has been truncated, but you can view the full file.
] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.cache.annotation.ProxyCachingConfiguration'
2024-07-12 09:41:23,390 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Bean creation exception on singleton FactoryBean type check: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.cache.annotation.ProxyCachingConfiguration': No bean named 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry' available
2024-07-12 09:41:23,390 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.cache.config.internalCacheAdvisor'
2024-07-12 09:41:23,390 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.cache.annotation.ProxyCachingConfiguration'
2024-07-12 09:41:23,390 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Bean creation exception on singl

Keybase proof

I hereby claim:

  • I am rock-007 on github.
  • I am umair_1 (https://keybase.io/umair_1) on keybase.
  • I have a public key ASBkcjM0xQGxj2BSnH2abnnwLijgIsITHRUYZCIIkheJqgo

To claim this, I am signing this object:

@rock-007
rock-007 / jpa-cheatsheet.java
Created January 23, 2024 22:21 — forked from curenosm/jpa-cheatsheet.java
JPA Cheatsheet
/*
JPA (Java Persistence API)
Transaction Management with an Entity-Mananger:
---
entityManager.getTransaction().begin();
entityManager.persist(<some-entity>);
entityManager.getTransaction().commit();
entityManager.clear();
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@rock-007
rock-007 / regex.md
Created March 28, 2021 09:49 — forked from vitorbritto/regex.md
Regex Cheat Sheet

Regular Expressions

Basic Syntax

  • /.../: Start and end regex delimiters
  • |: Alternation
  • (): Grouping