Class XMLLanguageDriver

    • Constructor Detail

      • XMLLanguageDriver

        public XMLLanguageDriver()
    • Method Detail

      • createSqlSource

        public SqlSource createSqlSource​(Configuration configuration,
                                         XNode script,
                                         java.lang.Class<?> parameterType)
        Description copied from interface: LanguageDriver
        Creates an SqlSource that will hold the statement read from a mapper xml file. It is called during startup, when the mapped statement is read from a class or an xml file.
        Specified by:
        createSqlSource in interface LanguageDriver
        Parameters:
        configuration - The MyBatis configuration
        script - XNode parsed from a XML file
        parameterType - input parameter type got from a mapper method or specified in the parameterType xml attribute. Can be null.
        Returns:
      • createSqlSource

        public SqlSource createSqlSource​(Configuration configuration,
                                         java.lang.String script,
                                         java.lang.Class<?> parameterType)
        Description copied from interface: LanguageDriver
        Creates an SqlSource that will hold the statement read from an annotation. It is called during startup, when the mapped statement is read from a class or an xml file.
        Specified by:
        createSqlSource in interface LanguageDriver
        Parameters:
        configuration - The MyBatis configuration
        script - The content of the annotation
        parameterType - input parameter type got from a mapper method or specified in the parameterType xml attribute. Can be null.
        Returns: