Erro ao iniciar o Wildfly?

Alguém poderia ajudar no erro ?
Estou rodando um xhtml simples(aluno.xhtml) associado a um managed bean. Sem erros na compilação.

20:28:38,543 ERROR [io.undertow.request] (default I/O-1) Blocking request failed HttpServerExchange{ GET /seapp2/alunos.xhtml}: java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at java.lang.String.substring(Unknown Source) [rt.jar:1.8.0_121]
at io.undertow.servlet.handlers.ServletPathMatches.setupServletChains(ServletPathMatches.java:311)
at io.undertow.servlet.handlers.ServletPathMatches.getData(ServletPathMatches.java:124)

O erro que está ocorrendo é de execução, a classe pode compilar corretamente mas ao executar uma determinada instrução gerar um erro.

Você pode colar a classe para olharmos?

Posta o beam por trás da tela alunos.xhtml.

Só tem este trecho da stack trace?

@ManagedBean
public class AlunoBean {

private Aluno aluno = new Aluno();

public Aluno getAluno() {
	return this.aluno;
}

public void grava() {
	AlunoDao dao = new AlunoDao();
	dao.adiciona(aluno);
	this.aluno = new Aluno();
}

}

@ManagedBean
public class AlunoBean {

private Aluno aluno = new Aluno();

public Aluno getAluno() {
	return this.aluno;
}

public void grava() {
	AlunoDao dao = new AlunoDao();
	dao.adiciona(aluno);
	this.aluno = new Aluno();
}

}

@Entity
public class Aluno {

@Id
@GeneratedValue
private Long id;
private String nome;
private Calendar dataNascimento;
private Integer anoEscolaridade;
private Integer turno;
private String atendimento;
private String localAtendimento;
private String telResponsavel;

public Long getId() {
	return id;
}
public String getNome() {
	return nome;
}
    ...