`

CMS开发文档

 
阅读更多
cms项目导入myeclipse
1.在myeclipse中新建一个项目jeecms,将服务器中jeecms项目下web-inf文件夹下内容拷到新建项目中
2.解压缩jeecms-3.0.2-final-src,在src文件夹下会看到有三个压缩文件,如果只想进行普通的二次开发,可以只导入cms这个源码,删除jeecms-cms-identity-3.0.2-final.jar即可,如果想进行深入的二次开发,需要导入common和core源码,另导入common-lib下的jar包,删除jeecms-cms- identity-3.0.2-final.jar,jeecms-common-3.0.2-final.jar ,jeecms-core- identity-3.0.2-final.jar这三个jar包,切记:务必进行build path
3.修改jdbc链接,自己导入数据库。
4.把服务器下install\config下的web.xml复制出来覆盖掉新建项目WEB-INF下的web.xml
5.classes下有四个文件,手动烤到myeclipse项目src根目录下中
6.将服务器上jeecms项目删掉,发布新建的jeecms项目。

首页的加载过程:
在浏览器中输入http://localhost:8080/jeecms,回车
首先进入配置文件web.xml,
<context-param>
<param-name>contextConfigLocation</param-name>
<!---->
<param-value>
/WEB-INF/config/application-context.xml
/WEB-INF/config/cache-context.xml
/WEB-INF/config/captcha-context.xml
/WEB-INF/config/jeecore-context.xml
/WEB-INF/config/jeecms-context.xml
</param-value>
</context-param>

应用范围内的初始化参数
其中jeecms-context.xml是对标签的初始化
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.shtml</welcome-file>
<welcome-file>index.jhtml</welcome-file>
</welcome-file-list>

通过以上标签找到应该加载哪一个页面
<servlet>
<servlet-name>JeeCmsFront</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/jeecms-servlet-front.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>JeeCmsFront</servlet-name>
<url-pattern>*.jhtml</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>JeeCmsFront</servlet-name>
<url-pattern>*.jspx</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>JeeCmsFront</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>JeeCmsFront</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>

通过servlet配置,可以找到jeecms-servlet-front.xml,在此配置文件的最后有
<import resource="jeecms-servlet-front-action.xml"/>代码
找到jeecms-servlet-front-action.xml,在此配置文件中有
<bean id="dynamicAct" class="com.jeecms.cms.action.front.DynamicPageAct"/>
可以找到类DynamicPageAct,此类是首页模板。
在类DynamicPageAct中有
public static final String TPL_INDEX = "tpl.index";
找到WEB-INF\languages\jeecms_front下messages_zh_CN.properties配置文件,可以找到对应的首页面
tpl.index=首页(工程中的首页.html文件)



标签的配置流程,以cms_content_list为例
首先,每一个标签的声明都是在jeecms-context.xml中进行的,
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"
default-lazy-init="true">
……
<bean id="cms_content_list" class="com.jeecms.cms.action.directive.ContentListDirective"/>(声明标签对应的类)
<bean id="staticPageSvc" class="com.jeecms.cms.staticpage.StaticPageSvcImpl">
<property name="freeMarkerConfigurer">
<bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="freemarkerVariables">
<map>
……
<entry key="cms_content_list" value-ref="cms_content_list"/>
……
</map>
</property>
<property name="templateLoaderPath" value=""/>
……
</bean>
</property>
</bean>
</beans>

此外,在配置文件jeecms-servlet-front.xml中,还有一段对标签的配置
<bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="freemarkerVariables">
<map>
……
<entry key="cms_content_list" value-ref="cms_content_list"/>
……
   </map>
</property>
         ……
</bean>

</bean>类ContentListDirective继承自AbstractContentDirective,最主要的是execute方法
public class ContentListDirective extends AbstractContentDirective {
/**
 * 模板名称
 */
public static final String TPL_NAME = "content_list";

/**
 * 输入参数,文章ID。允许多个文章ID,用","分开。排斥其他所有筛选参数。
 */
public static final String PARAM_IDS = "ids";

@SuppressWarnings("unchecked")
public void execute(Environment env, Map params, TemplateModel[] loopVars,
TemplateDirectiveBody body) throws TemplateException, IOException {
//获取站点
CmsSite site = FrontUtils.getSite(env);
//获取内容列表,可以通过此处进行更改,获取自己数据库中的数据
List<Content> list = getList(params, env);

Map<String, TemplateModel> paramWrap = new HashMap<String, TemplateModel>(
params);
//OUT_LIST值为tag_list,在类DirectiveUtils中声明,将内容列表放入其中
paramWrap.put(OUT_LIST, DEFAULT_WRAPPER.wrap(list));
//将params的值复制到variable中
Map<String, TemplateModel> origMap = DirectiveUtils
.addParamsToVariable(env, paramWrap);
//获取的是参数PARAM_TPL,是否调用模板以及调用的模板类型
InvokeType type = DirectiveUtils.getInvokeType(params);
//获取传入参数,列表样式,根据不同的参数获取不同的样式列表
String listStyle = DirectiveUtils.getString(PARAM_STYLE_LIST, params);
if (InvokeType.sysDefined == type) {
if (StringUtils.isBlank(listStyle)) {
throw new ParamsRequiredException(PARAM_STYLE_LIST);
}
//列表样式模板
env.include(TPL_STYLE_LIST + listStyle + TPL_SUFFIX, UTF8, true);
} else if (InvokeType.userDefined == type) {
if (StringUtils.isBlank(listStyle)) {
throw new ParamsRequiredException(PARAM_STYLE_LIST);
}
//列表样式模板路径 WEB-INF\t\cms_sys_defined\style_list\style_2-1.html
FrontUtils.includeTpl(TPL_STYLE_LIST, site, env);
} else if (InvokeType.custom == type) {
//这个模板就是自己声明的,即content_list.html,如果采用自定义模板的话,页面中可以只写上标签,并添加上标签内需要的几个参数,不需要写标签体的内容,会去自动调用模板中的标签体。
FrontUtils.includeTpl(TPL_NAME, site, params, env);
} else if (InvokeType.body == type) {
body.render(env.getOut());
} else {
throw new RuntimeException("invoke type not handled: " + type);
}
//将variable中的params值移除
DirectiveUtils.removeParamsFromVariable(env, paramWrap, origMap);
}

@SuppressWarnings("unchecked")
protected List<Content> getList(Map<String, TemplateModel> params,
Environment env) throws TemplateException {
Integer[] ids = DirectiveUtils.getIntArray(PARAM_IDS, params);
if (ids != null) {
//根据内容ID数组获取文章列表
return contentMng.getListByIdsForTag(ids, getOrderBy(params));
} else {
return (List<Content>) super.getData(params, env);
}
}

@Override
protected boolean isPage() {
return false;
}
}


Content_list.html中的内容
[#list tag_list as a]
<li><a href="${a.url}" target="_blank">${a.title}</a></li>
[/#list]

就是简单的将tag_list中的内容,即“paramWrap.put(OUT_LIST, DEFAULT_WRAPPER.wrap(list));”中放入的数据遍历出来

style_2-1.html中的内容 主要是对图文列表或标题列表向上滚动的样式的,其中包含两个同样为样式的文件
style_2-1_core.html(图文列表或标题列表向上滚动)和style_1-1_core.html(图文列表或标题列表向上滚动),在此就不做赘述了。

Jeecms是基于Spring注解,在自定义标签时对于实体类和dao service等注意注解的问题。

下面是我自己定义的标签mycontent_list的实现过程

首先,在数据库里创建了一个jc_mycontent的表,其中有id,title,content三个字段
其次,创建了一个实体类
public class MyContent {
private static final long serialVersionUID = 1L;
private Integer id;
private String title;
private String content;
public MyContent () {
super();
}
……get set方法
}

接下来是配置hibernate中jc_mycontent表的配置文件
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.jeecms.cms.entity.main">
<class name="MyContent" table="jc_mycontent">
<meta attribute="sync-DAO">false</meta>
<cache usage="read-write"/>
<id name="id" type="java.lang.Integer" column="id"><generator class="identity"/></id>
<property name="title" column="title" type="java.lang.String" not-null="true" />
<property name="content" column="content" type="java.lang.String" not-null="true" />
</class>
</hibernate-mapping>

与数据库交互的持久层接口
public interface MyContentDao {
public List<MyContent> getList();
}
持久层实现类
@Repository//持久层
public class MyContentDaoImpl extends HibernateBaseDao<MyContent, Integer>
implements MyContentDao {
@SuppressWarnings("unchecked")
public List<MyContent> getList(){
return find(byNothing());
}
private Finder byNothing(){
Finder f = Finder.create();
f.append("from MyContent");//可以在此处添加查询条件或者添加各种方法进行动态查询
f.setCacheable(true);
return f;
}

@Override
protected Class<MyContent> getEntityClass() {
return MyContent.class;
}
}
业务层接口
public interface MyContentMng {
public List<MyContent> getList();
}
业务层实现类
@Service//业务层
@Transactional
public class MyContentMngImpl implements MyContentMng {

@Transactional(readOnly = true)//配置事务为只读
public List<MyContent> getList(){
return myContentDao.getList();
}
private MyContentDao myContentDao;
@Autowired//自动绑定
public void setMyContentDao(MyContentDao myContentDao) {
this.myContentDao = myContentDao;
}
private List<ContentListener> listenerList;
@Autowired
public void setListenerList(List<ContentListener> listenerList) {
this.listenerList = listenerList;
}
}

标签类的抽象类,最主要的就是getData这个方法,以及绑定业务层,其中可以添加多种查询方法。可参考类AbstractContentDirective
public abstract class AbstractMyContentDirective implements
TemplateDirectiveModel {
protected Object getData(Map<String, TemplateModel> params, Environment env)
throws TemplateException {
return myContentMng.getList();
}
@Autowired
protected MyContentMng myContentMng;
}
自定义标签中最重要的类继承上边的抽象类
public class MyContentListDirective extends AbstractMyContentDirective {
/**
 * 模板名称
 */
public static final String TPL_NAME = "mycontent_list";
@SuppressWarnings("unchecked")
public void execute(Environment env, Map params, TemplateModel[] loopVars,
TemplateDirectiveBody body) throws TemplateException, IOException {
//获取站点
CmsSite site = FrontUtils.getSite(env);
//获取内容列表
List<MyContent> list = getList(params, env);
Map<String, TemplateModel> paramWrap = new HashMap<String, TemplateModel>(params);
//OUT_LIST值为tag_list,将内容列表放入其中
paramWrap.put(MYOUT_LIST, DEFAULT_WRAPPER.wrap(list));
//将params的值复制到variable中
Map<String, TemplateModel> origMap = DirectiveUtils.addParamsToVariable(env, paramWrap);

//没有采用默认的模板,直接采用自己写的简单的模板(mycontent_list.html)
FrontUtils.includeTpl(TPL_NAME, site, params, env);
//将variable中的params值移除
DirectiveUtils.removeParamsFromVariable(env, paramWrap, origMap);
}
protected List<MyContent> getList(Map<String, TemplateModel> params,
Environment env) throws TemplateException {
return myContentMng.getList();
}
}

样式模板mycontent_list.html内容,里边可以自己添加一些样式,可参考\t\cms_sys_defined\style_list下样式文件
[#list mytag_list as a]
<li><a href="${a.title}"><font color='blue'>"${a.content}"</font></a></li>
[/#list]


首页里加入如下代码
[@cms_mycontent_list]
   <ul class="topnews">
   </ul>
[/@cms_mycontent_list]

通过以上这些代码,可以实现将自己的表jc_mycontent中的数据查询并显示在页面上
分享到:
评论

相关推荐

    TeamSite原厂技术文档-CMS开发文档

    - **标题**: “TeamSite 原厂技术文档 - CMS 开发文档” - **描述**: “Interwoven 的旗舰产品 TeamSite 6.7.1 版本开发文档说明书”。 这表明文档主要介绍了 Interwoven 公司旗下 TeamSite 产品的 CMS(内容管理...

    齐博cms开发文档

    齐博CMS(Qibo CMS)是一款广泛应用于网站建设的开源内容管理系统。这个开发文档包含了全面的...对于初次接触CMS开发的人员,这些文档无疑是宝贵的资源。在实际操作中,遇到不明确的地方,查阅官方文档往往能找到答案。

    帝国cms(EmpireCMS)开发文档完整版

    通过这份帝国CMS开发文档,开发者可以深入理解帝国CMS的工作原理,熟练掌握其各项功能,并能根据自身需求进行二次开发,打造个性化的网站平台。无论你是初学者还是有经验的开发者,都能从中受益匪浅。

    帝国CMS二次开发帮助文档与资源地址收集

    ### 帝国CMS二次开发帮助文档与资源地址收集 #### 概述 帝国CMS(EmpireCMS)是一款广泛应用于网站构建与管理的开源内容管理系统(CMS),它提供了丰富的功能和灵活的定制选项,适用于搭建各类网站。对于希望...

    CMS需求文档.zip程序开发文档软件开发文技术档下载

    CMS需求文档.zip程序开发文档软件开发文技术档下载CMS需求文档.zip程序开发文档软件开发文技术档下载CMS需求文档.zip程序开发文档软件开发文技术档下载CMS需求文档.zip程序开发文档软件开发文技术档下载 1.合个人...

    74CMS骑士模版开发手册3.2版—离线版HTML版

    《74CMS骑士模版开发手册3.2版—离线版HTML版》是一份专为74CMS系统模板开发者量身打造的详尽指南,旨在帮助开发者更好地理解和操作74CMS系统的模板开发工作。这份手册以离线HTML格式提供,方便开发者在没有网络的...

    铭飞内容管理系统(MS-CMS)

    在技术实现上,铭飞CMS基于Java语言开发,这是企业级应用广泛采用的编程语言,具有良好的跨平台能力和丰富的库支持。它可能采用了MVC(Model-View-Controller)架构模式,使得业务逻辑、数据处理和用户界面之间保持...

    英皇cms影视网站系统源码-多种模板-自带采集-支持APP.zip

    在部署英皇CMS时,需要按照官方文档提供的步骤进行,包括服务器环境配置、数据库创建、源码上传、配置文件修改等环节。 7. **自定义与扩展**: 由于提供了多种模板,用户可以根据自身品牌风格选择或定制合适的...

    SiteServer_CMS_二次开发文档

    SiteServer CMS 二次开发文档 SiteServer CMS 二次开发文档是关于二次开发 SiteServer CMS 的完整指南。本文档涵盖了从文档概述到前台模板开发的所有方面,旨在帮助开发者快速掌握 SiteServer CMS 二次开发的技术。...

    RuoYi开发手册(离线版)

    《RuoYi开发手册(离线版)》是一份专为开发者提供的详尽指南,主要涵盖了RuoYi框架的使用、配置、开发以及优化等多个方面。RuoYI是一个基于Spring Boot的企业级快速开发平台,旨在提高开发效率,减少重复工作。以下...

    英皇cms影视网站系统源码多种模板+自带采集+支持APP

    最新英皇cms影视网站系统源码,多种模板、自带采集、支持APP三端:PC+wap+app端,支持视频下载,有直播,开通会员,短视频,论坛社区功能等。 最新英皇cms影视网站系统源码,多种模板、自带采集、支持APP三端:PC+...

    08cms房产系统v8.7单城市_多城市pano全景插件

    08CMS房产系统里面一个全景插件,可以实现全景看房功能,这个大家应该有了解,在手机旁就可以实现360度全景看房体验,另外我们还有火车头房源采集工具插件,第三方,还有适合08CMS的链家模板插件,安装使用遇到问题找Q:...

    08CMS 破解无加密 可二次开发

    08cms房产网汽车网商业破解版,PHP 5.2.3或更高版本才能运行此版本的08CMS

    wuzhicms(五指cms)

    在进行二次开发的系统中,安装插件前务必做好备份,并对比原有文件的差异,以防覆盖或修改了自定义的功能。如果系统有定制化的模板或模块,可能需要在插件中添加相应的适配代码,以确保兼容性。 总的来说,五指CMS...

    shlcmsV4.11标签说明文档

    深喉咙企业建站系统V4.11标签说明文档

    We7 CMS.NET源码+详细中文文档

    We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文文档We7 CMS.NET源码+详细中文...

    74cms 二次开发文档

    74cms二次开发文档,74 smarty自定义函数,模板使用方法

Global site tag (gtag.js) - Google Analytics