昨天我搜索了所有资源,但未获得成功的结果。请考虑到几天前我可以使用此设备进行测试。但是今天我没有这样做。我还用另一台Mac测试了该iphone,结果是相同。设备是Iphone 6s。我做了以下事情:-重新启动Xcode-重新启动mac-重新启动设备-清理并构建项目
请帮我解决这个问题。
1:
WebView 中所需的数据不会立即写入 cookie。但当我等待 10-15 秒时一切正常。为了解释这种情况,这个例子对我来说很合适:
我打开应用程序并登录。登录后,我立即关闭应用程序。然后,当我再次打开应用程序后,它显示我要注销。但如果我在 1 分钟后打开应用程序,它会再次显示为已登录。对我来说,cookie 是最近写入的。但我找不到解决方案。如果您知道请帮助我。
我使用了 CookieManager 类,但它也没有帮助。
CookieManager.getInstance().setAcceptCookie(true);
Run Code Online (Sandbox Code Playgroud) 我是 spring boot 的新手,尝试解决这个问题一周。我下载plugin并仍然收到相同的错误,如果需要,我没有代理的工具/选项
编辑
我刚刚创建了一个用户可以注册或登录的基本项目。我有控制器、服务存储库、域类。但是当我想检查我的数据库是否创建时,我收到了这个错误。我检查了我plugins是否错过了一些但是一切似乎都正确。你能给我一些猜测可能是什么问题吗?
我的 pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>1.13.6.RELEASE</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.11.6.RELEASE</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.6.RELEASE</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.6.RELEASE</version>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins> …Run Code Online (Sandbox Code Playgroud)