Git Product home page Git Product logo

simple-aop's Introduction

simple-aop

Simple AOP example

This is just an example project for me to play around with to learn about Java and the ecosystem. I am trying to learn what I am doing with java from the command line but including gradle as it will make it easier for future use.

In order to compile all my classes I need to do the following from the root directory of the project:

`javac **/*.java`

The above command will take all java files in the project and compile them to class files. Then I would like to run my program. I will need to run the following two commands.

`cd src/main/java`
`java com.williamsbdev.Main`

This will execute the Main.class which contains your main function.

To make this simpler, there is a build tool called gradle. I ran the following commands (from a mac) to setup gradle:

`brew install gradle`

Next I created the build.gradle file. I added some plugins, java and application, to help the process and this allows me to do the following:

`gradle build run`

This will compile all of your classes into a build/classes directory and also create a jar with the name of your project directory under build/libs. Then with the run command and the configuration for the application plugin mainClassName, it will execute the jar pointing to the main class similar to the java command below:

`java -cp build/libs/simple-aop.jar com.williamsbdev.Main`

simple-aop's People

Contributors

williamsbdev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.