java
文章平均质量分 65
贝壳小田田
这个作者很懒,什么都没留下…
展开
-
SpringBoot项目中使用Spring-data-jpa启动时报错Could not fetch the SequenceInformation from the database
在写一个简单的SpringBatch项目时出现了如下报错:2021-04-16 09:03:17.085 ERROR 26864 --- [ main] o.h.e.j.e.internal.JdbcEnvironmentImpl : Could not fetch the SequenceInformation from the databasejava.sql.SQLException: 数字溢出 at oracle.jdbc.driver.NumberCommo...原创 2021-04-16 11:38:14 · 5598 阅读 · 2 评论 -
Ajax + SpringMVC页面加载时从后台请求数据
请求url直接使用springMVC请求路径: <script th:inline="javascript"> $(document).ready(function(){ $.ajax({ type:"GET", url:"news/getKeyWords", s...原创 2018-05-19 19:13:47 · 2779 阅读 · 0 评论 -
关于无法通过ftpClient创建文件夹的问题
今天在通过ftpClient在linux服务器上目录A下创建文件夹以及进行文件上传操作时,发现了无法创建新文件夹,最初以为是vsftpd设置的问题,但是根据百度搜索的答案进行设置,都没有效果。后来发现我以前设置的一个目录B下能够正常的通过ftpClient创建文件夹和上传文件。通过对比,发现了两个文件夹的区别是(假定使用ftpClient进行上传操作的用户为ftpuser):能够正常创建文件夹的目...原创 2018-07-08 17:42:54 · 8489 阅读 · 0 评论 -
Spring通过@Value注解注入系统属性
自己写了一个Spring注解方式注入系统属性的test,成功注入自定义的系统属性。Model类定义package cn.lin.luo.tian.profile;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Com...原创 2018-10-17 11:09:46 · 1516 阅读 · 0 评论