弹出启动应用程序中的方法名称中找到无效字符(CR或LF)

时间:2016-07-01 10:28:37

标签: angularjs spring

我正在使用在 localhost:8080 上运行的spring boot MVC应用程序。

我想从位于 localhost / public 上运行的xampp htdocs文件夹中的Angularjs应用程序访问此内容。

Angular服务中的Cors在Spring控制器中使用时启用并正常工作:

if let

访问此端点时出现此错误:

func collectionView(collectionView: UICollectionView, didDeselectItemAtIndexPath indexPath: NSIndexPath) {
        if let cellToDeselect = collectionView.cellForItemAtIndexPath(indexPath) {
        cellToDeselect.contentView.backgroundColor = UIColor.clearColor()
       }
    }

有关此问题的任何帮助?

1 个答案:

答案 0 :(得分:0)

由于您的localhost:8080,您还应指定端口

@CrossOrigin(origins = "http://localhost:8080/public", maxAge = 3600)

请告诉我这是否适合您