UVA 10098 - Generating Fast

本文介绍如何使用库函数next_permutation在给定字符串的基础上生成所有可能的全排列,并确保输出按照升序排列。通过实例演示,强调算法效率的重要性。

Generating permutation has always been an important problem in computer science. In this problem you will have to generate the permutation of a given string in ascending order.  Remember that your algorithm must be efficient.


Input

The first line of the input contains an integer n, which indicates how many strings to follow. The next n lines contain n strings. Strings will only contain alpha numerals and never contain any space. The maximum length of the string is 10.

 
Output

For each input string print all the permutations possible in ascending order. Not that the strings should be treated, as case sensitive strings and no permutation should be repeated. A blank line should follow each output set.

 

Sample Input

3
ab
abc
bca

 

 

 

Sample Output

ab
ba

abc
acb
bac
bca
cab
cba

abc
acb
bac
bca
cab
cba

 

 

直接调用库函数next_permutation,在调用前要用qsort先排序下

 

#define RUN
#ifdef RUN

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <vector>
#include <list>
#include <cctype> 
#include <algorithm>
#include <utility>
#include <math.h>
#include <ctime>

using namespace std;

#define MAXN 110

char buf[MAXN];

int cmp( const void *a , const void *b )  
{
	return *(char *)a - *(char *)b;  
} 

int main(){

#ifndef ONLINE_JUDGE
	freopen("10098.in", "r", stdin);
	freopen("out.out", "w", stdout);
#endif

	int n;
	scanf("%d", &n);
	while(n--){
		memset(buf, 0, sizeof(buf));
		scanf("%s", buf);
		qsort(buf, strlen(buf), sizeof(buf[0]), cmp);

		do {
			printf("%s\n", buf);
		} while ( next_permutation(buf, buf+strlen(buf)) );
		printf("\n");
	}
}


#endif

 

2025-10-14 10:06:00.251 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_92 2025-10-14 10:06:00.255 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_94 2025-10-14 10:06:00.259 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_93 2025-10-14 10:06:00.260 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_91 2025-10-14 10:06:00.261 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_92 2025-10-14 10:06:00.262 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_94 2025-10-14 10:06:00.263 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_93 2025-10-14 10:06:00.269 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_95 2025-10-14 10:06:00.283 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_94 2025-10-14 10:06:00.286 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_92 2025-10-14 10:06:00.288 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_93 2025-10-14 10:06:00.290 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_95 2025-10-14 10:06:00.291 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_94 2025-10-14 10:06:00.296 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_96 2025-10-14 10:06:00.301 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_95 2025-10-14 10:06:00.303 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_93 2025-10-14 10:06:00.304 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_94 2025-10-14 10:06:00.305 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_96 2025-10-14 10:06:00.306 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_95 2025-10-14 10:06:00.311 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_97 2025-10-14 10:06:00.324 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_96 2025-10-14 10:06:00.326 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_94 2025-10-14 10:06:00.327 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_95 2025-10-14 10:06:00.328 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_97 2025-10-14 10:06:00.329 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_96 2025-10-14 10:06:00.336 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_98 2025-10-14 10:06:00.341 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_97 2025-10-14 10:06:00.344 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_95 2025-10-14 10:06:00.345 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_96 2025-10-14 10:06:00.346 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_98 2025-10-14 10:06:00.347 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_97 2025-10-14 10:06:00.354 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_99 2025-10-14 10:06:00.365 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_98 2025-10-14 10:06:00.366 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_96 2025-10-14 10:06:00.367 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_97 2025-10-14 10:06:00.368 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_99 2025-10-14 10:06:00.368 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryAllUsingGET_3 2025-10-14 10:06:00.369 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_98 2025-10-14 10:06:00.373 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_100 2025-10-14 10:06:00.377 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_99 2025-10-14 10:06:00.378 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_97 2025-10-14 10:06:00.379 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_98 2025-10-14 10:06:00.380 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_100 2025-10-14 10:06:00.381 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_99 2025-10-14 10:06:00.384 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_101 2025-10-14 10:06:00.387 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_100 2025-10-14 10:06:00.388 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_98 2025-10-14 10:06:00.388 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_99 2025-10-14 10:06:00.389 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_101 2025-10-14 10:06:00.390 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_100 2025-10-14 10:06:00.393 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_102 2025-10-14 10:06:00.397 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_101 2025-10-14 10:06:00.397 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_99 2025-10-14 10:06:00.398 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_100 2025-10-14 10:06:00.399 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_102 2025-10-14 10:06:00.399 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_101 2025-10-14 10:06:00.403 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_103 2025-10-14 10:06:00.406 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_102 2025-10-14 10:06:00.407 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_100 2025-10-14 10:06:00.407 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_101 2025-10-14 10:06:00.408 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_103 2025-10-14 10:06:00.408 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_102 2025-10-14 10:06:00.409 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_104 2025-10-14 10:06:00.415 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_103 2025-10-14 10:06:00.416 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_101 2025-10-14 10:06:00.417 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_102 2025-10-14 10:06:00.417 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_104 2025-10-14 10:06:00.421 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_15 2025-10-14 10:06:00.422 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_103 2025-10-14 10:06:00.423 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_105 2025-10-14 10:06:00.424 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querycartodayaddcountUsingGET_2 2025-10-14 10:06:00.428 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_104 2025-10-14 10:06:00.429 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_102 2025-10-14 10:06:00.430 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_103 2025-10-14 10:06:00.431 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_105 2025-10-14 10:06:00.432 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_104 2025-10-14 10:06:00.436 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_106 2025-10-14 10:06:00.441 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_105 2025-10-14 10:06:00.442 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_103 2025-10-14 10:06:00.443 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_104 2025-10-14 10:06:00.443 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_106 2025-10-14 10:06:00.444 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_105 2025-10-14 10:06:00.445 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByStatusUsingGET_1 2025-10-14 10:06:00.450 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_107 2025-10-14 10:06:00.451 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querySortIdUsingGET_9 2025-10-14 10:06:00.454 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_106 2025-10-14 10:06:00.455 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_104 2025-10-14 10:06:00.457 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_105 2025-10-14 10:06:00.458 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_107 2025-10-14 10:06:00.462 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_16 2025-10-14 10:06:00.463 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_106 2025-10-14 10:06:00.466 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_108 2025-10-14 10:06:00.467 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querySortIdUsingGET_10 2025-10-14 10:06:00.471 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_107 2025-10-14 10:06:00.472 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_105 2025-10-14 10:06:00.472 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_106 2025-10-14 10:06:00.473 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_108 2025-10-14 10:06:00.475 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_107 2025-10-14 10:06:00.479 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_109 2025-10-14 10:06:00.485 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_108 2025-10-14 10:06:00.486 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_106 2025-10-14 10:06:00.490 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_107 2025-10-14 10:06:00.492 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_109 2025-10-14 10:06:00.493 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_108 2025-10-14 10:06:00.497 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_110 2025-10-14 10:06:00.502 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_109 2025-10-14 10:06:00.517 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_107 2025-10-14 10:06:00.518 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_108 2025-10-14 10:06:00.519 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_110 2025-10-14 10:06:00.523 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_109 2025-10-14 10:06:00.524 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByOpenIdUsingGET_1 2025-10-14 10:06:00.527 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_111 2025-10-14 10:06:00.528 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: querycountByOpenIdUsingGET_1 2025-10-14 10:06:00.540 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_110 2025-10-14 10:06:00.541 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_108 2025-10-14 10:06:00.542 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_109 2025-10-14 10:06:00.544 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_111 2025-10-14 10:06:00.545 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_110 2025-10-14 10:06:00.551 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_112 2025-10-14 10:06:00.555 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_111 2025-10-14 10:06:00.555 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_109 2025-10-14 10:06:00.556 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_110 2025-10-14 10:06:00.557 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_112 2025-10-14 10:06:00.557 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_111 2025-10-14 10:06:00.560 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_113 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_112 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_110 2025-10-14 10:06:00.563 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_111 2025-10-14 10:06:00.564 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_113 2025-10-14 10:06:00.567 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_112 2025-10-14 10:06:00.569 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_114 2025-10-14 10:06:00.606 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_113 2025-10-14 10:06:00.606 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_111 2025-10-14 10:06:00.607 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_112 2025-10-14 10:06:00.608 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_114 2025-10-14 10:06:00.611 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_17 2025-10-14 10:06:00.612 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_113 2025-10-14 10:06:00.613 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_115 2025-10-14 10:06:00.618 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_114 2025-10-14 10:06:00.620 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_112 2025-10-14 10:06:00.620 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_113 2025-10-14 10:06:00.621 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_115 2025-10-14 10:06:00.623 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_18 2025-10-14 10:06:00.624 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_114 2025-10-14 10:06:00.626 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_116 2025-10-14 10:06:00.631 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_115 2025-10-14 10:06:00.632 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_113 2025-10-14 10:06:00.633 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_114 2025-10-14 10:06:00.634 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_116 2025-10-14 10:06:00.637 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_19 2025-10-14 10:06:00.638 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_115 2025-10-14 10:06:00.639 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_117 2025-10-14 10:06:00.643 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_116 2025-10-14 10:06:00.643 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_114 2025-10-14 10:06:00.644 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_115 2025-10-14 10:06:00.645 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_117 2025-10-14 10:06:00.649 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: listSortUsingGET_20 2025-10-14 10:06:00.650 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_116 2025-10-14 10:06:00.651 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_118 2025-10-14 10:06:00.655 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: addUsingPOST_117 2025-10-14 10:06:00.656 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteUsingDELETE_115 2025-10-14 10:06:00.657 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: deleteBatchUsingDELETE_116 2025-10-14 10:06:00.658 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: editUsingPUT_118 2025-10-14 10:06:00.659 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryByIdUsingGET_117 2025-10-14 10:06:00.662 [main] INFO s.d.s.w.r.operation.CachingOperationNameGenerator:40 - Generating unique operation named: queryPageListUsingGET_119 2025-10-14 10:06:01.542 [main] INFO o.s.scheduling.quartz.SchedulerFactoryBean:727 - Starting Quartz Scheduler now 2025-10-14 10:06:01.891 [main] INFO org.quartz.core.QuartzScheduler:547 - Scheduler MyScheduler_$_DESKTOP-GN66K4T1760407550298 started. 2025-10-14 10:06:01.927 [main] INFO org.jeecg.JeecgSystemApplication:61 - Started JeecgSystemApplication in 27.984 seconds (JVM running for 29.317) 2025-10-14 10:06:01.936 [main] INFO org.jeecg.JeecgSystemApplication:38 - ---------------------------------------------------------- Application Jeecg-Boot is running! Access URLs: Local: http://localhost:9005/jeecg-boot/ External: http://192.168.110.52:9005/jeecg-boot/ Swagger文档: http://192.168.110.52:9005/jeecg-boot/doc.html ---------------------------------------------------------- 2025-10-14 10:06:02.141 [RMI TCP Connection(5)-192.168.110.52] INFO o.a.c.c.C.[Tomcat].[localhost].[/jeecg-boot]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet' 2025-10-14 10:06:02.141 [RMI TCP Connection(5)-192.168.110.52] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet' 2025-10-14 10:06:02.172 [RMI TCP Connection(5)-192.168.110.52] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 31 ms 解释一下
最新发布
10-15
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值