JDA strives to provide a clean and full wrapping of the Discord REST api and its Websocket-Events for Java.
JDA will be continued with version 3.x and will support Bot-features (for bot-accounts) and Client-features (for user-accounts). Please see the Discord docs for more information about bot accounts.
This officially makes JDA-Client deprecated. Please do not continue using it, and instead switch to the promoted 3.x version listed further below.
Creating the JDA Object is done via the JDABuilder class by providing an AccountType (Bot/Client).
After setting the token via setter,
the JDA Object is then created by calling the .buildBlocking() or the .buildAsync() (non-blocking login) method.
Example:
JDA jda = new JDABuilder(AccountType.BOT).setToken("token").buildBlocking();Note: It is important to set the correct AccountType because Bot-accounts require a token prefix to login.
Using EventListener:
public class ReadyListener implements EventListener
{
public static void main(String[] args)
throws LoginException, RateLimitedException, InterruptedException
{
// Note: It is important to register your ReadyListener before building
JDA jda = new JDABuilder(AccountType.BOT)
.setToken("token")
.addEventListener(new ReadyListener())
.buildBlocking();
}
@Override
public void onEvent(Event event)
{
if (event instanceof ReadyEvent)
System.out.println("API is ready!");
}
}Using ListenerAdapter:
public class MessageListener extends ListenerAdapter
{
public static void main(String[] args)
throws LoginException, RateLimitedException, InterruptedException
{
JDA jda = new JDABuilder(AccountType.BOT).setToken("token").buildBlocking();
jda.addEventListener(new MessageListener());
}
@Override
public void onMessageReceived(MessageReceivedEvent event)
{
if (event.isFromType(ChannelType.PRIVATE))
{
System.out.printf("[PM] %s: %s\n", event.getAuthor().getName(),
event.getMessage().getContent());
}
else
{
System.out.printf("[%s][%s] %s: %s\n", event.getGuild().getName(),
event.getTextChannel().getName(), event.getMember().getEffectiveName(),
event.getMessage().getContent());
}
}
}Note: In these examples we override methods from the inheriting class
ListenerAdapter.
The usage of the@Overrideannotation is recommended to validate methods.
We provide a small set of Examples in the Example Directory.
In addition you can look at the many Discord Bots that were implemented using JDA:
Be sure to replace the VERSION key below with the latest version shown above!
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>VERSION</version>
</dependency>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>Gradle
dependencies {
compile 'net.dv8tion:JDA:VERSION'
}
repositories {
jcenter()
}The builds are distributed using JCenter through Bintray JDA JCenter Bintray
Docs can be found on the Jenkins or directly here
A simple Wiki can also be found in this repository's Wiki section
If you need help, or just want to talk with the JDA or other Discord Devs, you can join the Unofficial Discord API Guild.
Once you joined, you can find JDA-specific help in the #java_jda channel
We have our own Discord Server here
For guides and setup help you can also take a look at the wiki
Especially interesting are the Getting Started
and Setup Pages.
Created and maintained by sedmelluq
LavaPlayer is the most popular library used by Music Bots created in Java.
It is highly compatible with JDA and Discord4J and allows to play audio from
Youtube, Soundcloud, Twitch, Bandcamp and more providers.
The library can easily be expanded to more services by implementing your own AudioSourceManager and registering it.
It is recommended to read the Usage section of LavaPlayer
to understand a proper implementation.
Sedmelluq provided a demo in his repository which presents an example implementation for JDA:
https://github.com/sedmelluq/lavaplayer/tree/master/demo-jda
Created and maintained by jagrosh.
JDA-Utilities provides a Command-Extension and several utilities to make using JDA very simple.
Features include:
- Paginated Message using Reactions
- EventWaiter allowing to wait for a response and other events
Created and maintained by MinnDevelopment
Kotlin-JDA provides several extensions allowing to easily use kotlin idioms with JDA.
Features include:
- Groovy-style Builders
- Coroutine RestActions
Created and maintained by sedmelluq
JDAction is a Gradle plugin which makes sure that the return values of all methods which return a RestAction are used.
Since it is a common mistake to forget to .queue()/.complete()/.submit() RestActions,
and it is often only discovered after noticing that something doesn't work,
this plugin will help catch those cases quickly as it will cause a build failure in such case.
More info about RestAction: Wiki
More can be found in our github organization: JDA-Applications
If you want to contribute to JDA, make sure to base your branch off of our master branch (or a feature-branch) and create your PR into that same branch. We will be rejecting any PRs between branches!
It is also highly recommended to get in touch with the Devs before opening Pull Requests (either through an issue or the Discord servers mentioned above).
It is very possible that your change might already be in development or you missed something.
More information can be found at the wiki page Contributing
This project requires Java 8.
All dependencies are managed automatically by Gradle.
- NV Websocket Client
- Version: 2.2
- Github
- JCenter Repository
- OkHttp
- Version: 3.8.1
- Github
- JCenter Repository
- Apache Commons Lang3
- Version: 3.5
- Website
- JCenter Repository
- Apache Commons Collections4
- Version: 4.1
- Website
- JCenter Repository
- org.json
- Version: 20160810
- Github
- JCenter Repository
- JNA
- Version: 4.4.0
- Github
- JCenter Repository
- Trove4j
- Version: 3.0.3
- BitBucket
- JCenter Repository
See also: https://discordapp.com/developers/docs/topics/libraries
