摘要:
须要更加严格的要求自己! 阅读全文
摘要:
把工程改名后,结果在eclipse里面产生了两个工程,一个原工程,一个是新工程,删除原工程报错, 说工程不存在。这个时候拖动原工程到别的workset中,发现原工程消失了,并找到workspace目录,看看有没有原工程的名的目录,有就删除掉。 阅读全文
摘要:
1.创建base-entity 选中base工程,右键创建一个新的maven工程 自动选择了base这个目录存放子工程 创建后,pom.xml修改成如下内容: <?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache 阅读全文
摘要:
本问题解决方案参照网站多篇文章融合解决,在此表示感谢! 环境:springboot+shiro+jquery-easyui 问题:在ajax请求时,如果此时session已经失效,系统没有自动跳转到登录页面。后来在服务端加了判断ajax请求的代码,结果还是没有用,无法取到ajax特定的head值(X 阅读全文
摘要:
代码: <a href="#" th:onclick="${'removeArticleImg('''+cmsImg.imgID+''')'}">删除</a> cmsImg.imgID 为后端返回的数据,放到attribute中。 输出: <a href="#" onclick="removeArt 阅读全文
摘要:
vi /etc/ssh/sshd_config GSSAPIAuthentication 改为 no开启UseDNS,值改为 no service sshd restart 阅读全文
摘要:
在http节点中配置: #支持跨域访问 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allo 阅读全文
摘要:
安装命令:yum install -y unzip zip 同时安装unzip和zip 阅读全文
摘要:
主框架页面: 在主界面区会加载西区菜单点击的URL内容. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <title>主界面</title> <div th:include="/public/util::public"/> <div th 阅读全文
摘要:
mysql: select * from test where school_name like concat('%',${name},'%') oracle: select * from test where school_name like '%'||${name},'%' SQL Server 阅读全文