在Hibernate中,进行连接查询时,如果使用join语句,就容易产生标题所示的错误. 比如from Content o left join Mcp mcp where o.mcp.id=mcp.id and mcp.id=2 正确的做法应该是在A中建立private Mcp mcp,并映射, 然后通过from Content o left join o.mcp mcp where mcp.id=2 奇怪吧,这么罗嗦.其实大可不必这样连接操作,只要from Content where mcp…