Giter Club home page Giter Club logo

Comments (4)

easybest avatar easybest commented on July 20, 2024

hi @kopax , thanks for your profound questions.

  1. it supports override default delete query for a single entity, you should add your custom mapper when create SqlSessionFactory, and use entity's class name as mapper's namespace , and define a delete statement with id "_deleteById" , because I have judged the statement is exist before creating default query.
if (!isStatementExist("_deleteById")) {
            buildDeleteById(builder);
        }
  1. have a look at http://docs.spring.io/spring-data/commons/docs/current/reference/html/#repositories.custom-behaviour-for-all-repositories

if you have further question, you can ask me.

  1. tell you a small tip : set "org.springframework.data.mybatis" logger level to debug , you can find the default mapper on the console.

from spring-data-mybatis.

easybest avatar easybest commented on July 20, 2024

because of poor document now ( I am writing hardly ),
you can hardly find out some features.

So if you can provide me some runnable code , I will resolve your questions more effectively.

from spring-data-mybatis.

kopax avatar kopax commented on July 20, 2024
  1. OK
  2. OK
  3. Thanks

For 3 could you provide me an example for let's say.

I want to implement a select with a custom "WHERE"

SELECT
...
FROM
...
WHERE 
    us_reg_date between '2000-07-05'
AND
    DATE_ADD('2011-11-10',INTERVAL 1 DAY)

It will be nice to just be able to just define the WHERE part

    <select id="selectStepDay" resultType="com.entityA" parameterType="DATE">
        <include refid="_selectEntityA" /> <!-- if you generate these for your select, it should be reusable isn't it ?-->
        <include refid="_fromEntityA" /> <!-- if you generate these for your select, it should be reusable isn't it ?-->
        WHERE 
          us_reg_date between '2000-07-05'
        AND
          DATE_ADD(#value#,INTERVAL 1 DAY)
    </select>

I think I don't need the resultMap if I use the resultType I assume this will be handled in your module.
I have seen some code in your module that generate a mapping, is it a resultMap and if it is, is it in the globalScope ? Would it be more accurate to use resultMap over resultType ?

If you generate the _selectEntityA in an xml markup <sql id=_select"+perisistentEntity.getClass()+"> and same for _fromEntityA, we might be able to reuse them from the global scope of this entity is it correct ?
this way we could rewrite override it in our own file if we need to. It give's flexibility.

It would be interesting to use the builder for really creating the xml file and see how this could be used with our custom mappers.

from spring-data-mybatis.

easybest avatar easybest commented on July 20, 2024

see https://github.com/hatunet/spring-data-mybatis-testing/tree/extendxml

from spring-data-mybatis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.