Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/astrapi69/jaulp-wicket

This project is a collection of Apache Wicket components and utilities.
https://github.com/astrapi69/jaulp-wicket

ajax internationalization java panel replacing-wicket-panels wicket wicket-application wicket-components

Last synced: 10 days ago
JSON representation

This project is a collection of Apache Wicket components and utilities.

Awesome Lists containing this project

README

        

## Overview

The library jaulp-wicket is a collection of Apache Wicket components and utilities.

The components are loosely coupled and can be easily integrated into an existing Apache Wicket application.

The components are also designed to be customised so the user can provide they own components over factory methods.

## License

The source code comes under the liberal Apache License V2.0, making jaulp-wicket great for all types of wicket applications.

## javadoc

jaulp-wicket-annotated-header-contributors [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-annotated-header-contributors.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-annotated-header-contributors)

jaulp-wicket-base [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-base.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-base)

jaulp-wicket-behaviors [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-behaviors.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-behaviors)

jaulp-wicket-components [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-components.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-components)

jaulp-wicket-data-provider [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-data-provider.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-data-provider)

jaulp-wicket-dialogs [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-dialogs.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-dialogs)

jaulp-wicket-dropdownchoices [![Javadocs](http://www.javadoc.io/badge/de.alpharogroup/jaulp-wicket-dropdownchoices.svg)](http://www.javadoc.io/doc/de.alpharogroup/jaulp-wicket-dropdownchoices)

# Build status

[![Build Status](https://travis-ci.org/astrapi69/jaulp-wicket.svg?branch=master)](https://travis-ci.org/astrapi69/jaulp-wicket)

## Maven Central

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.alpharogroup/jaulp-wicket/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.alpharogroup/jaulp-wicket)

## Maven projects and install

You can add the following maven dependencies to your project `pom.xml` if you want to import the library.

You can first define the version properties:

```

...

7.8.0
${jaulp-wicket.version}
${jaulp-wicket.version}
${jaulp-wicket.version}
${jaulp-wicket.version}
${jaulp-wicket.version}
${jaulp-wicket.version}
${jaulp-wicket.version}
...

```

Add the following maven dependency to your project `pom.xml` if you want to import annotated-header-contributors:

```xml

de.alpharogroup
jaulp-wicket-annotated-header-contributors
${jaulp-wicket-annotated-header-contributors.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import base:

```xml

de.alpharogroup
jaulp-wicket-base
${jaulp-wicket-base.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import behaviors:

```xml

de.alpharogroup
jaulp-wicket-behaviors
${jaulp-wicket-behaviors.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import components:

```xml

de.alpharogroup
jaulp-wicket-components
${jaulp-wicket-components.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import data-provider:

```xml

de.alpharogroup
jaulp-wicket-data-provider
${jaulp-wicket-data-provider.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import dialogs:

```xml

de.alpharogroup
jaulp-wicket-dialogs
${jaulp-wicket-dialogs.version}

```

Add the following maven dependency to your project `pom.xml` if you want to import dropdownchoices:

```xml

de.alpharogroup
jaulp-wicket-dropdownchoices
${jaulp-wicket-dropdownchoices.version}

```
## Run Examples

Example projects are moved to the [wicket-examples](https://github.com/astrapi69/wicket-examples) project.

You can run every example project by doing following steps. For instance if you want to start the examples for the project jaulp-wicket-components you do this:

First change to the directory and build the project:
```bash
cd jaulp-wicket-components-examples
mvn clean install
```
Running the example:
```bash
mvn jetty:run
```
Call then http://localhost:8080/

Another way is to start the example application programmaticly with jetty. In every example project there exists a start class with a main method that have the prefix Start**** and the suffix ****Examples.

## Open Issues
[![Open Issues](https://img.shields.io/github/issues/astrapi69/jaulp-wicket.svg?style=flat)](https://github.com/astrapi69/jaulp-wicket/issues)

## Documentation

* [BaseWebApplication][BaseWebApplication]
* [Counting online users with wicket][Counting online users with wicket]
* [Internationalization with ResourceModelFactory][Internationalization with ResourceModelFactory]
* [Wicket and I18n][Wicket and I18n]
* [Replacing wicket panels with ajax][Replacing wicket panels with ajax]

[Replacing wicket panels with ajax]: https://github.com/astrapi69/jaulp-wicket/wiki/Replacing-wicket-panels-with-ajax "Replacing wicket panels with ajax"
[Wicket and I18n]: https://github.com/astrapi69/jaulp-wicket/wiki/Wicket-and-I18n "Wicket and I18n"
[Internationalization with ResourceModelFactory]: https://github.com/astrapi69/jaulp-wicket/wiki/Internationalization-with-StringResourceModel-and-ResourceModelFactory "Internationalization with ResourceModelFactory"
[Counting online users with wicket]: https://github.com/astrapi69/jaulp-wicket/wiki/Counting-online-users-with-wicket "Counting online users with wicket"
[BaseWebApplication]: https://github.com/astrapi69/jaulp-wicket/wiki/Extending-from-BaseWebApplication "Extending from BaseWebApplication"

## Want to Help and improve it? ###

The source code of jaulp-wicket are on GitHub. Please feel free to fork and send pull requests!

Create your own fork of [astrapi69/jaulp-wicket/fork](https://github.com/astrapi69/jaulp-wicket/fork)

To share your changes, [submit a pull request](https://github.com/astrapi69/jaulp-wicket/pull/new/develop).

Don't forget to add new units tests on your changes.

## Contacting the Developer

Do not hesitate to contact the jaulp-wicket developers with your questions, concerns, comments, bug reports, or feature requests.

- Feature requests, questions and bug reports can be reported at the [issues page](https://github.com/astrapi69/jaulp-wicket/issues).

## Note

No animals were harmed in the making of this library.

# Donations

If you like this library, please consider a donation through paypal:
PayPal this

or over bitcoin or bitcoin-cash with:

1Jzso5h7U82QCNmgxxSCya1yUK7UVcSXsW

or over ether with:

0xaB6EaE10F352268B0CA672Dd6e999C86344D49D8

or over flattr:

Flattr this

## Similar projects

Here is a list of awesome projects that use wicket, extends or decorate it.

- [wicket-matchers](https://github.com/NitorCreations/wicket-matchers) Wicket 6 / Hamcrest 1.3 utility matchers
- [wicket-utils](https://github.com/NitorCreations/wicket-utils) Useful components, models and other stuff for Wicket (mainly 6) projects
- [awesome-wicket](https://github.com/PhantomYdn/awesome-wicket) A curated list of awesome projects powered by Apache Wicket