unexpected element (uri:"", local:"Group"). Expected elements are <{}group>
Встречайте исключение при unmarshalling из xml
JAXBContext jc = JAXBContext.newInstance(Group.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
Group group = (User)unmarshaller.unmarshal(new File("group.xml"));
Класс группы не имеет никакой аннотации, а group.xml содержит только данные.
Все может быть причиной?