Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
78 views

How concurrency implementation in Nhibernat 3.1

I have a project by nhibernate 3.1 . I need to concurrency implementation in project. I Add "Version" to hbm file : <class name="Person" table="Person_Person" > <id name="Id" ...
2
votes
0answers
743 views

NHibernate IInterceptor implementation(add properties to DB table that original domain class doesn't have)

How is possible to set some special column values when update/insert entities via NHibernate without extending domain classes with special properties? for example: in my case i would like to get ...
1
vote
1answer
644 views

spring 3 mvc requestmapping dynamic param problem

I have the following code which works fine with http://localhost:8080/HelloWorldSpring3/forms/helloworld but i want to have url have some thing like this ...
1
vote
1answer
152 views

Cakephp HABTM relation

i have theses tables article , article_currency, currency in database and i made HABTM between article and currency like this var $hasAndBelongsToMany = array('currency'=>array('className' ...
0
votes
1answer
337 views

How to configure maping in Spring MVC and Tomcat

im trying configure SpringMVC project and i have error when compile WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/test/home.jsp] in ...
0
votes
1answer
615 views

How to use dynamic SQL query in MyBatis with annotation(how to use selectProvider)?

I am trying to avoid having an additional xml to define the mapper in mybatis3. Annotation fits right in. I am a bit confused by the usage of @SelectProvider/@InsertProvider/etc. Don't think there ...