Jump to content

Jasper Studio plugin: Class not found


detinho

Recommended Posts

 Hi!

I'm trying to use the JasperStudio plugin, with a Java Bean data source. I've created a simple bean, Person.

When I try to use this bean to create a datasource, I get the folowing message:

Class not found: com.test.Person

What should I do, so the plugin find my classes?

 

Thanks in advance!

Code:
package com.test;import java.util.Arrays;import java.util.List;public class Person {    private String name;    public Person(String name) {        super();        this.name = name;    }        public String getName() {        return name;    }        public static List<Person> persons() {        return Arrays.asList(new Person("Marcos"), new Person("Vinicius"));    }}
Link to comment
Share on other sites

  • 2 weeks later...
  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

  • 4 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...