Java Software Reflection: Real World Example - Building an Object Relational Model Library

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Software Reflection is the ability of a process to examine, introspect, and modify its own structure and behavior. This video is part of a 3 part series where we will see how reflection works by applying it to a real world problem: Creating an object relational mapping library. In order for such a library to work with any code base utilizing it, the library must be able to examine the classes, interfaces, fields and methods at runtime without knowing the names of the interfaces, fields, methods at compile time.
    Assembly is inherently reflective instructions are data (stored program concept) and can be referenced just by changing the instruction pointer / program counter. High level languages lost this ability to self examine at runtime. Static languages in particular required all such knowledge be available at compile time.
    Part 2 of this series can be found here: • Java Software Reflecti...
    Part 3 can be found here: • Java Software Reflecti...
    The code I am using in this project can be found here: github.com/bri...
    The program uses my ORM library called 4DFLib. You can find the 4DFLib library here: github.com/bri...
    I created a video tutorial using the example above that walks you through using 4DFLib:
    Part 1: • 4DFLib Object Relation...
    Part 2: • 4DFLib Object Relation...
    Part 3: • 4DFLib Object Relation...
    I also have a related short series on ORM if you are not familiar with or would like to refresh on the concepts:
    Part 1: • What is object relatio...
    Part 2: • What is object relatio...
    This video is part of a full semester graduate course given on databases and application integration: • {DBMS - Database Manag...
    Additional Reading / References:
    Date, Christopher John, Hugh Darwen, and Nikos Lorentzos. Time and relational theory: temporal databases in the relational model and SQL. Morgan Kaufmann, 2014.
    Snodgrass, Richard T. Developing time-oriented database applications in SQL. Morgan Kaufmann Publishers, 2000.
    Please like this video and subscribe to my channel to receive updates on this project: / @codingcoach
    Link to slides used in this presentation: drive.google.c...
    Book used in this course: Garcia-Molina, Hector. Database systems: the complete book. Pearson Education India, 2008.
    www.amazon.com...

Комментарии • 2

  • @grimonce
    @grimonce 2 года назад

    This is great, I don't use Java daily, last time I touched it was during my university days, but these videos help to understand some general concept that concern more than just Java. Golang has reflection module, Python is 'interpreted' and dynamic and these videos help to understand how and why Python does certain things the way it does...

  • @patrickometry3256
    @patrickometry3256 2 года назад

    Hello, FYI the link in your description for Part 2 is actually pointing to Part 3. :)