Download presentation
Presentation is loading. Please wait.
Published byKeanu Boykin Modified over 10 years ago
1
Creative Commons Attribution- NonCommercial-ShareAlike 2.5 License Sakai Programmer's Café Sakai Tool Naming Tips Aaron Zeckoski azeckoski@gmail.com
2
2 Sakai tool environment Many tools exist in a typical Sakai installation –As a developer, you have to be careful when working in a large scale environment The primary issue is with naming collisions –Some names must be unique in the Sakai instance (not used by any other installed tools) Tools have many interconnections and use a custom request cycle so some programming practices must be followed
3
3 Namespace collisions Most namespace collisions will cause an error to occur on tomcat startup Typically you will see that part of the spring tree died and therefore all spring beans are destroyed Sometimes Sakai will still load but the offending tool will not Tip: Watch tomcat logs when starting up new tools URL: http://bugs.sakaiproject.org/confluence/display/BOOT/Sakai+app+and+tool+naming+tipshttp://bugs.sakaiproject.org/confluence/display/BOOT/Sakai+app+and+tool+naming+tips
4
4 Sakai tool xml file naming The tool id (e.g. sakai.tasklist) in the tool xml file must be unique –Typical id is sakai.toolname –Tool xml file located in tool/src/webapp/tools/ Typical filename is sakai.toolname.xml <tool id="sakai.tasklist" title="Programmer's Cafe - Task List" description="Programmer's Cafe - Task List">
5
5 Sakai project.xml naming The id (e.g. sakai-tasklist-tool) in each project.xml file must be unique –Typical id is sakai-toolname-location –Maven project.xml files are located throughout a typical Sakai app 3../../master/project.xml Programmer's Cafe - Task List sakaiproject sakai-tasklist-tool ${sakai.version}...
6
6 Spring bean naming The id ( e.g. org.sakaiproject.logic.CrudPlusLogic ) of each bean in components.xml must be unique –Convention for the id is to use the fully qualified classpath of the interface for the class –component.xml must be located in impl/pack/src/webapp/WEB-INF/ <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <bean id="org.sakaiproject.crudplus.logic.CrudPlusLogic" class="org.sakaiproject.crudplus.logic.impl.CrudPlusLogicImpl" init-method="init">
7
7 Database table naming Database table names have to be unique since Sakai shares a common schema (or database) Convention is to prefix the table name with the tool name (e.g. TOOLNAME_TABLE) –Good names: SAM_ANSWER, EVAL_ANSWER, GB_GRADES –Bad names: ANSWER, GRADE, CONFIG
8
8 Hibernate HBM files All Hibernate HBM files have to have unique names since Sakai uses one common Hibernate SessionFactory Convention is to prefix the hbm filename with the tool name (e.g. ToolnameItem.hbm.xml) –Good names: EvalAnswer.hbm.xml, TasklistTask.hbm.xml –Bad names: Answer.hbm.xml, Task.hbm.xml, Item.hbm.xml
9
9 Hibernate Persistent Classnames All Hibernate persistent classes must have unique classnames (this does not include the fully qualified classpath) Convention is to prefix the class name with the tool name (e.g. ToolnameItem.java) –Good: EvalAnswer.java, TasklistTask.java –Bad: Answer.java, Task.java
10
10 web.xml servlet name The servlet-name in the web.xml file must match the tool id from the tool xml file –web.xml is located in tool/src/webapp/WEB-INF –If this does not match you will get an uninformative NPE (Null Pointer Exception) in the tomcat log and the tool will fail to load sakai.tasklist org.sakaiproject.tool.tasklist.TasklistTool 1
11
11 Questions?
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.