Skip to content

Instantly share code, notes, and snippets.

@zhaoawd
Last active January 22, 2019 03:20
Show Gist options
  • Save zhaoawd/ca271a3daa39f041f3e61cbe0a271c38 to your computer and use it in GitHub Desktop.
Save zhaoawd/ca271a3daa39f041f3e61cbe0a271c38 to your computer and use it in GitHub Desktop.
[解决mybatis不自动报错的问题] #mybatis
public class FixedSqlSessionFactory extends SqlSessionFactoryBean {
@Override
protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
try {
return super.buildSqlSessionFactory();
} catch (Exception e) {
e.printStackTrace();
} finally {
ErrorContext.instance().reset();
}
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment