我在solr中读到了模板中的模板,并在下面的主题中添加了solr索引中的静态字段,但当我将其添加到我的data-config.xml时,无法检索该字段
How would I insert a static value into a field ?
<pre>
<dataConfig>
<dataSource type="JdbcDataSource"
driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/expina" user="root" password="root"/>
<document>
<entity name="category" query="SELECT * from category">
<field column="section" template="category"/>
</entity>
<entity name="mark" query="SELECT * from mark">
<field column="section" template="mark"/>
</entity>
<entity name="stuffs" query="CALL fetchAllStuffs();" >
<field column="section" template="stuff"/>
</entity>
</document>
</dataConfig>
</pre>