随笔分类 -  lifery

摘要:参考:https://www.jianshu.com/p/97ba64888894 Postman是一款功能强大的网页调试与发送网页HTTP请求的Chrome插件 Postman背景介绍 用户在开发或者调试网络程序或者是网页B/S模式的程序的时候是需要一些方法来跟踪网页请求的,用户可以使用一些网络的 阅读全文
posted @ 2021-03-30 09:40 溶洞 阅读(369) 评论(0) 推荐(0)
摘要:Oracle Linux OEL7 如何关闭防火墙 验证防火墙是否已经关闭 $ service firewalld status or $ systemctl status firewalld 关闭防火墙服务 $ sudo service firewalld stop or $ sudo syste 阅读全文
posted @ 2021-03-15 11:11 溶洞 阅读(440) 评论(0) 推荐(0)
摘要:参考:https://www.runoob.com/redis/redis-install.htmlhttps://blog.csdn.net/q1035331653/article/details/79077260https://www.cnblogs.com/zjz20/p/11587376.h 阅读全文
posted @ 2021-03-10 17:17 溶洞 阅读(331) 评论(0) 推荐(0)
摘要:https://liferay.dev/blogs/-/blogs/osgi-force-bundle-refresh https://learn.liferay.com/dxp/7.x/en/content-authoring-and-management/collections-and-coll 阅读全文
posted @ 2021-03-02 16:58 溶洞 阅读(56) 评论(0) 推荐(0)
摘要:首先看下liferay的官方教程网站liferay官方教程 https://dev.liferay.com/develop/tutorials参考:https://blog.csdn.net/astrowx/article/details/56007929 1.选择liferay的开发使用工具,工具 阅读全文
posted @ 2021-03-01 11:25 溶洞 阅读(468) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/u011296165/article/details/107683445Oauth2 有四种授权模型 授权码,隐藏式,密码式,凭证式 目前主流的形式是授权码方式 阅读全文
posted @ 2021-02-22 15:11 溶洞 阅读(161) 评论(0) 推荐(0)
摘要:用户的空间 1:访客空间 http://10.8.4.112:8080/web/guest 2:我的个人资料 个人(usera:screenname)公有空间:我的个人资料 http://10.8.4.112:8080/web/usera 3:我的面板 个人(usera:screenname)私有空 阅读全文
posted @ 2021-02-20 17:51 溶洞 阅读(78) 评论(0) 推荐(0)
摘要:参考:https://help.liferay.com/hc/en-us/articles/360032627372-Freemarker-Variable-Reference-Guide 模板如何调用服务: <#assign userLocalService = serviceLocator.fi 阅读全文
posted @ 2021-02-07 15:35 溶洞 阅读(99) 评论(0) 推荐(0)
摘要:https://mvnrepository.com/ https://maven.aliyun.com/mvn/guide gradle 配置指南 在 build.gradle 文件中加入以下代码: allprojects { repositories { maven { url 'https:// 阅读全文
posted @ 2021-01-27 15:13 溶洞 阅读(138) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/qq_22172133/article/details/81513955 一、相关介绍 Gradle是一个好用的构建工具 ,使用它的原因是: 配置相关依赖代码量少,不会像maven一样xml过多 打包编译测试发布都有,而且使用起来方便 利用自定义的任 阅读全文
posted @ 2021-01-27 14:53 溶洞 阅读(189) 评论(0) 推荐(0)
摘要:参考:https://www.cnblogs.com/yjmyzz/p/javaee-jax-rs-tutorial.html JAX-RS(Java API for RESTful Web Services)同样也是JSR的一部分,详细规范定义见 https://jcp.org/en/jsr/de 阅读全文
posted @ 2021-01-27 12:55 溶洞 阅读(170) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/u012129031/article/details/53409761 简介 JAX-RS (JSR-311) 是为 Java EE 环境下的 RESTful 服务能力提供的一种规范。它能提供对传统的基于 SOAP 的 Web 服务的一种可行替代。 阅读全文
posted @ 2021-01-27 12:35 溶洞 阅读(458) 评论(0) 推荐(0)
摘要:1:首先创建rest module服务 2:liferay7中配置服务访问策略; 3:访问地址:http://localhost:8080/o/greetings 阅读全文
posted @ 2021-01-27 11:41 溶洞 阅读(117) 评论(0) 推荐(0)
摘要:EL-ADMIN 参考:https://blog.csdn.net/zj7321/article/details/85335069 EL-ADMIN 基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统, 权限控制的方式 阅读全文
posted @ 2021-01-26 14:31 溶洞 阅读(4052) 评论(0) 推荐(0)
摘要:可以直接调用服务的,就是调用对应的service这个service可以是我们自己使用ServiceBuilder生成的,也可以liferay自带的。 注意:serviceLocator 的里面findService只能找serviceBuilder生成的服务,你也可以在里面写自己想要的方法 <#as 阅读全文
posted @ 2021-01-25 12:17 溶洞 阅读(80) 评论(0) 推荐(0)
摘要:参考:http://www.huqiwen.com/2016/05/22/add-journal-article-in-liferay-with-webservice/ 在Liferay中有时候我们希望通过在其他系统中或者远程发布网页内容,此时就需要使用Liferay提供的webservice接口, 阅读全文
posted @ 2021-01-25 12:10 溶洞 阅读(121) 评论(0) 推荐(0)
摘要:<style type="text/css"> button{ width: 50px; height: 50px; border: 1px solid blue; background-color: blue; color: red; border-radius: 5px; -webkit-box 阅读全文
posted @ 2021-01-21 18:29 溶洞 阅读(83) 评论(0) 推荐(0)
摘要:如何获取webcontent中的url地址:参考demo<div class="szf-zc-w1c1 lf"> <div class="szf_tit" align="center"> 最新通知 </div> <ul class="szf-w1l"> <#if entries?has_conten 阅读全文
posted @ 2021-01-21 15:37 溶洞 阅读(87) 评论(0) 推荐(0)
摘要:参考:http://www.huqiwen.com/2016/03/28/get-struct-custom-field-in-adt-template/ 在Liferay中有时候我们希望通过在其他系统中或者远程发布网页内容,此时就需要使用Liferay提供的webservice接口,可能会碰到如下 阅读全文
posted @ 2021-01-12 16:06 溶洞 阅读(104) 评论(0) 推荐(0)
摘要:参考:https://www.cnblogs.com/hibou/p/6140460.html "com.liferay.portlet.action-timeout", "com.liferay.portlet.active", "com.liferay.portlet.add-default-r 阅读全文
posted @ 2021-01-04 12:05 溶洞 阅读(185) 评论(0) 推荐(0)