File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/ru/mystamps/web/feature/series/importing/extractor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public class JdbcSiteParserDao implements SiteParserDao {
49
49
private String addParserParameterSql ;
50
50
51
51
@ Value ("${site_parser.find_like_matched_url}" )
52
- private String findParserIdByMatchedUrl ;
52
+ private String findParserIdByMatchedUrlSql ;
53
53
54
54
@ Value ("${site_parser.find_names}" )
55
55
private String findParserNamesSql ;
@@ -97,7 +97,7 @@ public void addParserParameter(AddParserParameterDbDto param) {
97
97
public Integer findParserIdForUrl (String url ) {
98
98
try {
99
99
return jdbcTemplate .queryForObject (
100
- findParserIdByMatchedUrl ,
100
+ findParserIdByMatchedUrlSql ,
101
101
Collections .singletonMap ("url" , url ),
102
102
Integer .class
103
103
);
You can’t perform that action at this time.
0 commit comments