DawitZerom / waa-sep-2022-aop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lab 5 - Spring AOP

You can continue to your last lab assignment to implement followings.

Requirements


  • Make a ActivityLog database table (id,date,operation,duration) that will store all method names that have ExecutionTime annotations.
  • Make an Aspect that has an annotation pointcut @ExecutionTime, when placed on a method, it calculates the time taken to complete that method and writes it to ActivityLog table.
  • Make an Aspect that has an pointcut for classes in edu.miu.service package to check if POST requests has AOP-IS-AWESOME header. If the header is not present then throw a AopIsAwesomeHeaderException.

Technical Details


  • Use n-tier software architecture model.
  • Use DTOs.
  • PostgreSQL is recommended as a Relational Database system.
  • Populate your database with dummy data using data.sql.

Submission

  • Fork the repository and push your changes.
  • Once you finished your project, send a Pull Request. (Send only one Pull Request once you finish the assignment.)

Important Notes


  • You are not allowed to share codes with your classmates. If detected, you will get NC.
  • For pairs:
    • Individual's work will be checked from the commits.
    • Share tasks evenly and fairly.
    • To have a clearer understanding of pair programming:
      • Pair programming is an agile software development technique in which two programmers work together at one workstation. One, the driver, writes code while the other, the observer or navigator reviews each line of code as it is typed in. The two programmers switch roles frequently.

      • Wikipedia
  • Remember to respect the code honor submission policy. All written code must be original. Presenting something as one’s own work when it came from another source is plagiarism and is forbidden.

  • Plagiarism is a very serious thing in all American academic institutions and is guarded against vigilantly by every professor.

About


Languages

Language:Java 100.0%