我有一个小组作业,每当我收到文件时,它说 抛出新的UnsupportedOperationException(“尚不支持。”);
这究竟是什么意思?我该如何解决/阻止它呢?
以下是我收到的其中一个文件:
public class CustomNamingStrategy extends SpringPhysicalNamingStrategy{
...
@Override
public Identifier toPhysicalColumnName(Identifier name
, JdbcEnvironment jdbcEnvironment) {
return getIdentifier(name.toString(), name.isQuoted(), jdbcEnvironment);
}
}
答案 0 :(得分:1)
UnsupportedOperationException
更像NotYetImplemented
或TODO
或InsertYourCodeHere
。只需删除throw new UnsupportedOperationException("Not supported yet.");
行,然后将代码放在那里。