Posts

  • Spring Notes (4) - Transaction Management

    Transaction Reference propagation behaviors Transaction: https://segmentfault.com/a/1190000013341344 Transaction Isolation Levels isolation: Specifies transaction isolation level. Default is DEFAULT …

  • Spring Notes (3) - AOP

    AOP: Aspect Oriented Programming Implemented using dynamic proxy. Traditional Methods Interface-based dynamic proxy: Proxy.newProxyInstance Subclass-based dynamic proxy: Enhancer.create Terminology …

  • Spring Notes (2) - Annotation-based IOC Configuration

    Annotation-based IOC Configuration XML Configuration First, you need to scan the packages. <!-- Add namespace --> <beans xmlns="http://www.springframework.org/schema/beans" …

  • Spring Notes (1)

    Why Use Spring? For decoupling! What is decoupling? Coupling Refers to dependencies between programs: Dependencies between classes Dependencies between methods Decoupling Reduce dependencies between …

  • Maven Project Directory Management

    Recently I’ve been trying to write projects with Maven, but unfortunately my skills aren’t good enough. I got stuck at the beginning by the Maven project directory arrangement. Let me …

  • Project Naming Guide

    How to name a project? I’m sure all you coders often feel troubled by this. Here I’ve slightly organized some relatively standard naming rules, mainly for my own reference! Feel free to …

  • Mybatis Notes

    Finally, I finished the month-long DDL battle and picked up my old love again. In the next few days, I’ll go through the process: Mybatis -> Spring -> Spring MVC! 1. XML Configuration and …

  • ModuleNotFoundError Solutions

    Today I encountered a very strange thing. When I tried to use the mmdetection toolkit This is what I entered: $ python tools/test.py configs/faster_rcnn_r50_fpn_1x.py …

  • [Solved] Missing cl.exe error under Anaconda

    Today I was very frustrated. To configure the environment required for mmdetection, I really went through a lot of trouble. Here’s a record of an error that kept me stuck. cl.exe /c /nologo /Ox …

  • Jupyter + PyCharm + Anaconda Setup Issues

    Today I suddenly discovered that Jupyter can actually be integrated into PyCharm! Then, I excitedly went to implement the Jupyter + PyCharm + Anaconda environment deployment… However… …

🐝