Hello,
When we want to assign a default value to a function, we usually use it as follows.
public List<Data> getAllData(int page=0, int size=100)
However, this is not the case with @RequestParam with SpringBoot.
public List<Data> getAllData…
Hello, For SQL Server, it will be enough to run the following script to get the record counts in all tables.
SELECT t.name AS table_name
,s.row_count AS row_count
FROM sys.tables t
JOIN sys.dm_db_partition_stats s
ON t.OBJECT_ID = s…
Hello,
If you are encountering an error as in the title while creating a connection pool for GlassFish or Payara Server, you can fix the problem by editing as follows.
If you using Java 1.8, go to directory..\Java\jre1.8.0_261\lib\security
If you usin…
Hello, If you get an error as in the title when you add swagger to your REST API project that you have done with the Spring Boot project. You can fix the problem by doing the following
It will be enough to add the following code into the application.…
Hello,If you get information like the title and your project is redirected to http://localhost:8080/login when it first runs, you can find the solution by changing the @SpringBootApplication annotation as follows.
@SpringBootApplication(exclude = {Se…
Merhaba,
Başlıktaki gibi hata ile karşılaşılınca "pom.xml" dosyasında aşağıdaki gibi gibi ekleme yapmamız yeterli olacaktır.plugins->
plugin->executions->execution->configuration altına eklenmelidir
<xjcArgs>
<xjcArg&…
Merhaba,
Başlıktaki gibi bir hata ile karşılaşılıyorsa "eslint" pluginini kaldırmalısınız.
npm remove @vue/cli-plugin-eslint
Merhaba,
Başlıktaki gibi bir hata ile karşılaşıyorsanız. Bunun anlamı Enum için @Size annotationı kullanmışsınız demektir. @Size etiketini kaldırmanız yeterli olacaktır.
@Size(max = 50)
@Column(name = "TALEP_TIPI")
@Enumerated(E…
Merhaba,
Laravel projesini uzak hostinge attıp .htaccess dosyasını aşağıdaki gibi düzenlememiz yeterli olacaktır.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !^public
RewriteRule ^undefined.*)$ public/…
Merhaba,
Sql server tablo kolonunun Collate özelliğini değiştirmek için aşağıdaki şekilde Alter Column yapmamız yeterli olacaktır.
ALTER TABLE [dbo].[ILCELER]
ALTER COLUMN TANIM NVARCHAR(50)
COLLATE TURKISH_CI_AS NULL
GO
Merhaba,
Yazmış olduğunuz projeyi IOS için derlemek istediğinizde başlıktaki hata ile karşılaşıyorsanız aşağıdaki işlemi yapmanız yeterli olacaktır.
{Project_Path}/ios/Flutter/Debug.xcconfig
içerisinde bulunan ilk satırı silmeniz yeterli olacaktır.…
Merhaba,
Sql serverde negatif değeri pozitif değere çevirmek için ABS fonksiyonunu kullanabilirsiniz..
select bakiye,abs(bakiye) pozitifBakiye from tblMusteriAcilisFisleri
where bakiye<0 code="">Sonuc
bakiyepozitifBakiye
-10.0 …
Merhaba,
Başlıktaki gibi bir hata ile karşılaşıyorsanız hibernate.dialect kısmında SQLServer Dialect sınıfı hatalı yazılmıştır. Bunun için dialect değerini aşağıdaki gibi güncellemek yeterli olacaktır.
<property name="hibernate.dialect" …
Merhaba,
Bazen Navigation Bar'ı kapatmak isteriz. Örneğin splash screen ekranında veya giriş ekranında bunun için aşağıdaki şekilde "constructor" altına aşağıdaki kodları yazmamız yeterli olacaktır.
static navigationOptions = {
head…
Merhaba,
React Native vector iconları X şeklinde görünüyorsa npm den silip yeniden eklemeniz yeterli olacaktır.
npm uninstall react-native-vector-icons --savenpm install react-native-vector-icons --savereact-native link react-native-vector-icons