Spring Boot test transaction is opened, but not in MySQL DB

I am working on the unit test of Spring Boot. As far as I know, it will auto open a transaction at the beginning & rollback at the end. However, I do not see the transaction is opened under the DB. Here is some of the log from the Spring application: [DEBUG] [AbstractPlatformTransactionManager.java]getTransaction(370) : Creating … Read more

Old Mac app won’t run on recent Intel 64 bit Intel MacBook [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a … Read more

Using fonts in Next js API route

I’m doing some basic image processing in a Next js API route where I am using sharp to turn svg text to a png. The issue is that the custom font is not being loaded, which seems to be resulting in the error (though this may be unrelated), Fontconfig error: No writable cache directories. The … Read more

ESP32 Cam Spamming SPI_FLASH_BOOT in Serial Monitor

hello im currently having a problem in my esp32 cam ai thinker i always get these spammed in my serial monitor rst:0x3 (SW_RESET),boot:0x1b (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode:DIO, clock div:1 load:0x3fff0030,len:1344 load:0x40078000,len:13964 load:0x40080400,len:3600 entry 0x400805f0 ets Jul 29 2019 12:21:46 how can i fix this i tried to press the reset button it doesnt … Read more

PHP error: “The zip extension and unzip command are both missing, skipping.”

When I run a composer update I get this error message: Loading composer repositories with package information Updating dependencies (including require-dev) Failed to download psr/log from dist: The zip extension and unzip command are both missing, skipping. The php.ini used by your command-line PHP is: /etc/php/7.0/cli/php.ini Now trying to download from source What do I … Read more

The coding is not defined

I am trying to run this coding after successfully install the pip install graphviz. However, there is error “tree is not defined” NameError Traceback (most recent call last) Cell In[3], line 3 1 import graphviz 2 # DOT data —-> 3 dot_data = tree.export_graphviz(classifier, out_file=None, label=”all”, 4 filled=True) 6 # Draw graph 7 graph = … Read more