jexpresso-accesslog

A middleware component for JExpresso web framework for access log messages

License

License

GroupId

GroupId

de.yourinspiration
ArtifactId

ArtifactId

jexpresso-accesslog
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

jexpresso-accesslog
A middleware component for JExpresso web framework for access log messages
Project URL

Project URL

https://github.com/Yourinspiration/jexpresso-accesslog
Project Organization

Project Organization

Yourinspiration
Source Code Management

Source Code Management

https://github.com/Yourinspiration/jexpresso-accesslog.git

Download jexpresso-accesslog

How to add to project

<!-- https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-accesslog/ -->
<dependency>
    <groupId>de.yourinspiration</groupId>
    <artifactId>jexpresso-accesslog</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-accesslog/
implementation 'de.yourinspiration:jexpresso-accesslog:1.0.1'
// https://jarcasting.com/artifacts/de.yourinspiration/jexpresso-accesslog/
implementation ("de.yourinspiration:jexpresso-accesslog:1.0.1")
'de.yourinspiration:jexpresso-accesslog:jar:1.0.1'
<dependency org="de.yourinspiration" name="jexpresso-accesslog" rev="1.0.1">
  <artifact name="jexpresso-accesslog" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.yourinspiration', module='jexpresso-accesslog', version='1.0.1')
)
libraryDependencies += "de.yourinspiration" % "jexpresso-accesslog" % "1.0.1"
[de.yourinspiration/jexpresso-accesslog "1.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
de.yourinspiration : jexpresso jar 1.1.1

test (2)

Group / Artifact Type Version
junit : junit jar 4.11
org.mockito : mockito-all jar 1.9.5

Project Modules

There are no modules declared in this project.

JExpresso middleware for printing access log messages

Maven

Latest stable release:

<dependency>
  <groupId>de.yourinspiration</groupId>
  <artifactId>jexpresso-accesslog</artifactId>
  <version>1.0.1</version>
</dependency>

Usage

final JExpresso app = new JExpresso();
// Format: 12.10.14 2:33:21: GET /path 166.156.23.21 200
// Prints the messages to standard out
app.use(new AccessLog(AccessLogFormat.SMALL, System.out));

Versions

Version
1.0.1
1.0.0