Projects tagged ‘python’ and ‘spring’


[7 total ]

596 Users
   

Spring is a lightweight Java/J2EE application framework based on code published in "Expert One-on-One J2EE Design and Development" by Rod Johnson. It includes powerful JavaBeans-based configuration ... [More] management applying Inversion-of-Control principles, a generic abstraction layer for transaction management allowing for pluggable transaction managers, a JDBC abstraction layer, integration with Hibernate, JDO, Apache OJB, and iBATIS SQL Maps, AOP functionality, and a flexible MVC Web application framework with multiple view technologies. There is also a .NET port available. [Less]
Created over 3 years ago.

1 Users

Spring Python is an offshoot of the Java-based SpringFramework and AcegiSecurityFramework, targeted for Python. Spring provides many useful features, and I wanted those same features available when ... [More] working with Python. Several key features include: * Inversion of control * Aspect oriented programming * DatabaseTemplate * Database transaction management * Distributed remoting * Security You can pick and choose which parts to use. Visit the web site for more details. The main library of Spring Python as well the sample applications are released under Apache License 2.0, making it a business friendly library. The SpringWiki sample application reuses a set of style sheets written for mediawiki that are GPL. [Less]
Created over 3 years ago.

0 Users

My code repository.
Created 2 months ago.

0 Users

It is often good to have a single place where you can put all your project configuration (database URLs, timeout settings, connection handler implementation etc.), in a form of simple strings/ints or ... [More] more complex Python objects. In the second case the approach can be taken to a level where a big graph of objects is defined using a configuration, and the lower-level objects are "injected" into the higher-level. modelsettings is a simple and Pythonic (no XML and Java-like features, not modelled by Spring) tool for managing configurations consisting of either simple definitions (strings/ints) or Python objects. It supports easy querying the configuration, local configuration and tagging configuration items. The supported tag is 'daemon' which defines objects to be run in daemon processes. [Less]
Created 3 months ago.

0 Users

Exercícios de java, trasparências e outros das faculdades em que trabalho
Created about 1 year ago.

0 Users

OverviewRun python scripts and access the Zeolite API from Python! To build this DLL, you will need a Visual C++ compiler, SWIG 1.3, and Python 2.5. Installation InstructionsGet Python here: ... [More] http://www.python.org/ftp/python/2.5/python-2.5.msi Then get cdPython here: http://l3dtpython.googlecode.com/files/cdPython-0.10.zip Go to D:\Install\Bundysoft\L3DT Standard 2.5 RC3 (or wherever L3DT.exe is installed) extract the cdPython.zip to here. cdPython is now installed. Try it out with the following steps: Get a script to try out, like HFtoBMP: http://l3dtpython.googlecode.com/files/HFtoBMP.py Create a Terrain. Start L3DT, go to cdPython->Run a Python script, browse to HFtoBMP.py, press OK, enter a filename in the text box (without the BMP extension), press OK Go to the folder where the HFtoBMP.py script is and there should be a BMP file with the filename you gave. How to write a Python script for ZeoliteImport the zeolite module in your Python code, e.g. import zeoliteCreate zeolite objects through the zeolite module, e.g. str = zeolite.CzStr() str.Create(None) str.EditUI('Enter a filename')To access the core ExtAPI object, you can reference it through the cvar attribute in the zeolite module: hf = zeolite.cvar.theAPI.project_GetMap('HF')Note that the following special cast functions will help in some cases: foo = zeolite.zmap_to_zvar(bar) # you need to convert ZMAP to ZVAR foo = zeolite.zlist_to_zvar(bar) # you need to convert ZLIST to ZVAR foo = zeolite.zformat_to_zvar(bar) # you need to convert ZFORMAT to ZVAR foo = zeolite.zfunc_to_zvar(bar) # you need to convert ZFUNC to ZVAR foo = zeolite.zvar_to_zmap(bar) # you need to convert ZVAR to ZMAP foo = zeolite.zvar_to_zlist(bar) # you need to convert ZVAR to ZLIST foo = zeolite.zvar_to_zfunc(bar) # you need to convert ZVAR to ZFUNC foo = zeolite.zvar_to_zformat(bar) # you need to convert ZVAR to ZFORMATFor the full zeolite API reference, see http://www.bundysoft.com/docs/doku.php?id=zeolite:functions [Less]
Created 11 months ago.

0 Users

欢迎来到Jythonspring项目主页此项目为Spring ... [More] 2.5.x的一套Jython扩展。它为你提供了一个MVC的MappingHandler和一个把Python类和Java接口绑定并且注册到Spring容器里面的FactoryBean封装。通过这两个工具,我们让Spring和Jython很好地结合起来,而且经过实践证明,能够大量地节省网站开发的时间。 使用该工具推荐的开发组合: Ibatis 2.3 + Ibator 1.0 + Spring 2.5.x + Jython 2.2.1 jythonspring0.3.0版本更新信息经过实际使用和调试之后,我对项目进行了很多微小的变动。诸如配置里面的python文件根目录路径搜索规则,PythonServletHelper提供的高效MVC开发工具方法,可以在Python文件中直接调用其它Python文件等等。 希望大家能够把实际使用中遇到的问题反馈给我,再进一步对它进行更好的调整。 [Less]
Created 11 months ago.