我想知道「#{request.userPrincipal.name}」在配置方面的打擊。當我運行我的Spring社交項目時,它總是在「#{request.userPrincipal.name}」處出現錯誤,如果我設置了諸如「123」之類的值,我的項目運行良好。什麼是錯的,是否有其他配置而不是「#{request.userPrincipal.name}」?關於春季社交XML配置
<bean id="connectionRepository" factory-method="createConnectionRepository" factory-bean="usersConnectionRepository" scope="request">
<constructor-arg value="#{request.userPrincipal.name}" />
<aop:scoped-proxy proxy-target-class="false" />
</bean>
你得到了什麼確切的錯誤? – abalogh
@Seong你是否嘗試使用從道具文件填充#{request.userPrincipal.name}的值,如果是,那麼我認爲你應該使用$ {request.userPrincipal.name},$而不是# –
是的我想要使用$ {request.userPrincipal.name}但我不知道如何設置正確的值!它總是有這樣的錯誤:org.springframework.expression.spel.SpelEvaluationException:EL1007E:(pos 22):無法找到字段或屬性「名稱」爲空 – Seong