Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Get generic type of class at runtime in Java #22

Open
davideuler opened this issue Jun 28, 2022 · 0 comments
Open

Get generic type of class at runtime in Java #22

davideuler opened this issue Jun 28, 2022 · 0 comments

Comments

@davideuler
Copy link
Owner

https://stackoverflow.com/questions/3403909/get-generic-type-of-class-at-runtime

public abstract class AbstractDao<T>
{
    private final Class<T> persistentClass;

    public AbstractDao()
    {
        this.persistentClass = (Class<T>) ((ParameterizedType) this.getClass().getGenericSuperclass())
                .getActualTypeArguments()[0];
    }
}
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant