txProxyTemplate  这个bean没找到

解决方案 »

  1.   

    No bean named 'txProxyTemplate' is defined  ----------------在你的applicationContext.xml 里面没有配置一个bean叫"txProxyTemplate"
    Pointcut is not well-formed: expecting 'name pattern' at character position 36
    execution(*com.gll.ssh.*service.*.*(..))  这个问题不是在applicationContext.xml文件,应该在你的Java文件里。
      

  2.   

    Pointcut is not well-formed看样子是AspectJ的错误
      

  3.   

    execution(*com.gll.ssh.*service.*.*(..)) 把第一个星后面加个空格,第一个星是返回类型,你跟后面的com连一起他会误解为通配符execution(* com.gll.ssh.*service.*.*(..))