{"id":19336565,"url":"https://github.com/spt-development/spt-development-audit-spring-boot","last_synced_at":"2025-08-24T08:21:40.794Z","repository":{"id":39925984,"uuid":"341509480","full_name":"spt-development/spt-development-audit-spring-boot","owner":"spt-development","description":"Library for integrating spt-development/spt-development-audit-spring into a Spring Boot application.","archived":false,"fork":false,"pushed_at":"2025-03-23T16:38:10.000Z","size":196,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T06:11:21.191Z","etag":null,"topics":["auditing","spring-boot","spring-boot-autoconfiguration","spring-boot-starter"],"latest_commit_sha":null,"homepage":"https://github.com/spt-development/spt-development-audit-spring-boot","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spt-development.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-23T10:05:08.000Z","updated_at":"2025-01-26T14:46:21.000Z","dependencies_parsed_at":"2023-10-12T04:56:54.562Z","dependency_job_id":"c5de1109-4e2e-4583-877c-aa1466c5a657","html_url":"https://github.com/spt-development/spt-development-audit-spring-boot","commit_stats":null,"previous_names":[],"tags_count":39,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spt-development%2Fspt-development-audit-spring-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spt-development%2Fspt-development-audit-spring-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spt-development%2Fspt-development-audit-spring-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spt-development%2Fspt-development-audit-spring-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spt-development","download_url":"https://codeload.github.com/spt-development/spt-development-audit-spring-boot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250352173,"owners_count":21416454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["auditing","spring-boot","spring-boot-autoconfiguration","spring-boot-starter"],"created_at":"2024-11-10T03:11:39.859Z","updated_at":"2025-04-23T01:30:49.452Z","avatar_url":"https://github.com/spt-development.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"````\n  ____  ____ _____   ____                 _                                  _   \n / ___||  _ \\_   _| |  _ \\  _____   _____| | ___  _ __  _ __ ___   ___ _ __ | |_ \n \\___ \\| |_) || |   | | | |/ _ \\ \\ / / _ \\ |/ _ \\| '_ \\| '_ ` _ \\ / _ \\ '_ \\| __|\n  ___) |  __/ | |   | |_| |  __/\\ V /  __/ | (_) | |_) | | | | | |  __/ | | | |_ \n |____/|_|    |_|   |____/ \\___| \\_/ \\___|_|\\___/| .__/|_| |_| |_|\\___|_| |_|\\__|\n                                                 |_|                                           \n audit-spring-boot---------------------------------------------------------------\n````\n\n[![build_status](https://github.com/spt-development/spt-development-audit-spring-boot/actions/workflows/build.yml/badge.svg)](https://github.com/spt-development/spt-development-audit-spring-boot/actions)\n\nLibrary for integrating \n[spt-development/spt-development-audit-spring](https://github.com/spt-development/spt-development-audit-spring) \ninto a Spring Boot application.\n\nUsage\n=====\n\nAdd the Spring Boot starter to your Spring Boot project pom.\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.spt-development\u003c/groupId\u003e\n    \u003cartifactId\u003espt-development-audit-spring-boot-starter\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003cscope\u003eruntime\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n\nTo configure the `JmsAuditEventWriter` rather than the default `Slf4jAuditEventWriter` set the `spt.audit.jms.destination`\nproperty to the name of your JMS audit event queue/topic and ensure a `JmsTemplate` bean is created.\n\nThe auto-configuration, relies on build information from the `org.springframework.boot.info.BuildProperties` bean. To\nmake this bean available, add the `build-info` execution to the `spring-boot-maven-plugin` configuration.\n\n```xml\n\u003cplugin\u003e\n    \u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n    \u003cartifactId\u003espring-boot-maven-plugin\u003c/artifactId\u003e\n    \u003cexecutions\u003e\n        \u003cexecution\u003e\n            \u003cid\u003ebuild-info\u003c/id\u003e\n            \u003cgoals\u003e\n                \u003cgoal\u003ebuild-info\u003c/goal\u003e\n            \u003c/goals\u003e\n        \u003c/execution\u003e\n    \u003c/executions\u003e\n\u003c/plugin\u003e\n```\n\nAdditionally, you should set the `spring.application.name` property to change the name of the application (that is \nadded to the audit events) from the default \"Spring Boot\".\n\nBuilding locally\n================\n\nTo build the library, run the following maven command:\n\n```shell\n$ ./mvnw clean install\n```\n\nRelease\n=======\n\nTo build a release and upload to Maven Central push to `main`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspt-development%2Fspt-development-audit-spring-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspt-development%2Fspt-development-audit-spring-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspt-development%2Fspt-development-audit-spring-boot/lists"}